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>", "company": "<string>", "address": "<string>", "apt": "<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 tracking information for all recipients in an order. Returns delivery status, addresses, and scheduled delivery dates.
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