Update Status (POST Method)
* used to set Handover status when handing parcels to carrier
Info
|
The request body is an array of UpdateStatusRequests[] objects.
UpdateStatusRequests[] :
Name | Type | Required | Description |
CourierId | int | Yes | See Tables |
CourierShipmentId | string | Yes | AWB number for update status |
StatusId | int | Yes | See Status id Table. Can only send id 3 (Handover) or any final status |
ActionDateTime | DateTime | Yes | DateTime of the event. |
Response :
Success (HTTP code 200)
{
"success": true,
"message": "Your request was processed successfully."
}
Failure (HTTP code 400)
{
"errors": [
{
"message": "Invalid request. Incorrect requests provided.",
"details": null
}
]
}