cURL
curl --request GET \ --url https://www.postable.com/api/v1/orders/track/{orderId} \ --header 'Authorization: Bearer <token>'
{ "data": [ { "project_uuid": "<string>", "recipients": [ { "internal_id": "<string>", "status": "<string>", "name": "<string>", "address": "<string>", "city": "<string>", "state": "<string>", "zip": "<string>", "country": "<string>", "scheduled_delivery_date": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z" } ] } ] }
Get delivery tracking information for an order
internal_id
status
scheduled_delivery_date
{ "data": [ { "project_uuid": "123e4567-e89b-12d3-a456-426614174000", "recipients": [ { "internal_id": "CUST-001", "status": "In Transit", "name": "John Doe", "address": "123 Main St", "city": "Anytown", "state": "CA", "zip": "12345", "country": "United States", "scheduled_delivery_date": "2026-01-28T00:00:00+00:00", "updated_at": "2026-01-23T15:30:00+00:00" } ] } ] }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
ID of the order to track
Order tracking information
Show child attributes