POST v1/user/shipment/document-list
MOBILE - LIST SHIPMENT DOCUMENTS
Request Information
URI Parameters
None.
Body Parameters
UserShipmentDocumentListRequestModelName | Description | Type | Additional information |
---|---|---|---|
shipment_uid | string |
Required |
|
user_id |
User ID (GUID) |
string |
Required Data type: Text |
user_signature |
MD5 hash signature for the active user to validate the request |
string |
Required Data type: Text |
Request Format
application/json, text/json
Sample:
{ "shipment_uid": "sample string 1", "user_id": "sample string 2", "user_signature": "sample string 3" }
Response Information
Resource Description
MOBILE - LIST SHIPMENT DOCUMENTS
BaseMetaResultModelOfShipmentDocumentModel[]Name | Description | Type | Additional information |
---|---|---|---|
response | Collection of ShipmentDocumentModel |
None. |
|
meta |
Basic meta information for the operation result |
MetaModel |
None. |
Response Format
application/json, text/json
Sample:
{ "response": [ { "id": 1, "shipment_uid": "sample string 2", "shipment_stop_id": 3, "document_image": [ "sample string 1", "sample string 2" ], "document_type": 4, "create_date": "2024-11-25T22:50:17.2747476+03:00", "create_user_uid": "sample string 6", "location_lat": 1.1, "location_long": 1.1 }, { "id": 1, "shipment_uid": "sample string 2", "shipment_stop_id": 3, "document_image": [ "sample string 1", "sample string 2" ], "document_type": 4, "create_date": "2024-11-25T22:50:17.2747476+03:00", "create_user_uid": "sample string 6", "location_lat": 1.1, "location_long": 1.1 } ], "meta": { "status_code": 1, "status_message": "sample string 2" } }