> ## Documentation Index
> Fetch the complete documentation index at: https://docs.postable.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Track Order

> Get delivery tracking information for an order

## Overview

Retrieve tracking information for all recipients in an order. This includes delivery status, addresses, and expected delivery dates.

## Tracking Data

For each project in the order, you'll receive tracking information for all recipients including:

* `internal_id`: Your internal identifier (if provided when adding recipients)
* `status`: Current delivery status
* `scheduled_delivery_date`: Expected delivery date (when available)

## Example Response

```json theme={null}
{
  "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"
        }
      ]
    }
  ]
}
```


## OpenAPI

````yaml GET /orders/track/{orderId}
openapi: 3.1.0
info:
  title: Postable API
  version: 1.0.0
  description: API for managing contacts and groups in Postable
servers:
  - url: https://www.postable.com/api/v1
    description: API base URL
security: []
paths:
  /orders/track/{orderId}:
    parameters:
      - name: orderId
        in: path
        required: true
        schema:
          type: integer
        description: ID of the order to track
        example: 12345
    get:
      summary: Track order delivery status
      description: >-
        Get tracking information for all recipients in an order. Returns
        delivery status, addresses, and scheduled delivery dates.
      responses:
        '200':
          description: Order tracking information
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/OrderTracking'
        '403':
          description: Unauthorized to access this order
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Unauthorized access to order tracking information
        '404':
          description: Order not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Order not found
      security:
        - sanctum: []
components:
  schemas:
    OrderTracking:
      type: object
      properties:
        project_uuid:
          type: string
          description: UUID of the project
        recipients:
          type: array
          items:
            $ref: '#/components/schemas/RecipientTracking'
    RecipientTracking:
      type: object
      properties:
        internal_id:
          type: string
          maxLength: 20
          nullable: true
          description: Your internal identifier for this recipient
        status:
          type: string
          description: Current delivery status
        name:
          type: string
          description: Recipient name
        company:
          type: string
          nullable: true
          description: Company name
        address:
          type: string
          description: Street address
        apt:
          type: string
          nullable: true
          description: Apartment, suite, or unit number
        city:
          type: string
          description: City
        state:
          type: string
          description: State or province
        zip:
          type: string
          description: ZIP or postal code
        country:
          type: string
          description: Country
        scheduled_delivery_date:
          type: string
          format: date-time
          nullable: true
          description: Expected delivery date in ISO-8601 format
        updated_at:
          type: string
          format: date-time
          description: Last update timestamp in ISO-8601 format
  securitySchemes:
    sanctum:
      type: http
      scheme: bearer
      bearerFormat: JWT

````