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

# Pod Order OpenAPI

> API endpoints for customers to import orders to our platform

<Note>
  This API documentation is provided for platform partners to import orders.
</Note>

## Welcome

This documentation provides API endpoints for importing orders to our platform. We use OpenAPI specifications to describe these interfaces, making it easy to integrate with your systems.

## Integration Flow

```mermaid theme={null}
sequenceDiagram
    participant Client
    participant API

    rect rgb(240, 253, 244)
    Note over Client,API: Step 1 — Discover Products
    Client->>API: GET /api/openapi/products
    API-->>Client: Product list with SKU codes
    end

    rect rgb(239, 246, 255)
    Note over Client,API: Step 2 — Create Orders
    Client->>API: POST /api/openapi/order
    Note right of Client: Use skuCode from Step 1
    API-->>Client: 200 OK
    end

    rect rgb(254, 249, 235)
    Note over Client,API: Step 3 — Track Shipments
    Client->>API: GET /api/openapi/waybills?orderNo=xxx
    API-->>Client: Tracking numbers & label URLs
    end
```

## Authentication

All API endpoints require authentication using Bearer tokens provided in the Authorization header.

```json theme={null}
{
  "Authorization": "Bearer YOUR_API_KEY"
}
```

API keys must be requested from our sales representatives. Please contact your account manager to obtain access credentials.
