Shipments
Retrieve shipment
Retrieves the details of an existing shipment.
Required permissions:
- shipment:basic:read
- payment:basic:read
get/shipments/{id}
Path parameters
idstring required
Example:ship_xxxxxxxxxxxxx
The unique identifier of the shipment to retrieve.
Response
A successful response
Example response
{
"created_at": "2023-12-01T05:00:00.401Z",
"delivery_estimate": "2023-12-01T05:00:00.401Z",
"id": "ship_xxxxxxxxxxxxx",
"payment": {
"id": "pay_xxxxxxxxxxxxxx"
},
"service": "Priority",
"tracking_code": "9400111899223456789012",
"updated_at": "2023-12-01T05:00:00.401Z"
}