> ## 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 delivery status

> Get tracking information for all recipients in an order. Returns delivery status, addresses, and scheduled delivery dates.



## OpenAPI

````yaml /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

````