Skip to main content
GET
/
vendor
/
orders
/
{id}
curl 'http://localhost:9000/vendor/orders/order_01HXYZABCDEF' \
  -H 'Authorization: Bearer <token>' \
  -H 'x-seller-id: <seller_id>'
{
  "order": {
    "id": "order_01HXYZABCDEF",
    "display_id": 42,
    "status": "pending",
    "email": "jane@example.com",
    "currency_code": "usd",
    "items": [
      {
        "id": "ordli_01HXYZABCDEF",
        "title": "T-Shirt / M",
        "quantity": 1,
        "unit_price": 2500
      }
    ],
    "summary": {
      "current_order_total": 2500,
      "paid_total": 2500
    },
    "created_at": "2026-06-01T10:00:00.000Z",
    "updated_at": "2026-06-01T10:00:00.000Z"
  }
}
Returns an order belonging to the authenticated seller, including items, addresses, payments, fulfillments, and returns.

Path parameters

id
string
required
The order’s ID.

Query parameters

fields
string
Comma-separated list of fields to include, prefix with +/- to add or remove from defaults.

Response

order
object
curl 'http://localhost:9000/vendor/orders/order_01HXYZABCDEF' \
  -H 'Authorization: Bearer <token>' \
  -H 'x-seller-id: <seller_id>'
{
  "order": {
    "id": "order_01HXYZABCDEF",
    "display_id": 42,
    "status": "pending",
    "email": "jane@example.com",
    "currency_code": "usd",
    "items": [
      {
        "id": "ordli_01HXYZABCDEF",
        "title": "T-Shirt / M",
        "quantity": 1,
        "unit_price": 2500
      }
    ],
    "summary": {
      "current_order_total": 2500,
      "paid_total": 2500
    },
    "created_at": "2026-06-01T10:00:00.000Z",
    "updated_at": "2026-06-01T10:00:00.000Z"
  }
}