Skip to main content
GET
/
clients
/
{client_id}
/
orders
List Client Orders
curl --request GET \
  --url https://api.example.com/clients/{client_id}/orders \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "orderNumber": "<string>",
      "quantity": 123,
      "totalValue": 123,
      "status": "<string>",
      "poReference": "<string>",
      "orderDate": "<string>",
      "styles": "<string>",
      "deliveryDate": "<string>"
    }
  ],
  "pagination": {
    "page": 123,
    "limit": 123,
    "total": 123,
    "totalPages": 123,
    "hasNext": true,
    "hasPrev": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.vinmake.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

client_id
string
required

Query Parameters

page
integer
default:1
Required range: x >= 1
limit
integer
default:10
Required range: 1 <= x <= 100
status
string | null

Comma-separated statuses

date_from
string<date-time> | null
date_to
string<date-time> | null
search
string | null

Search order # or style

Response

Successful Response

Paginated wrapper around ClientOrderRow.

data
ClientOrderRow · object[]
required
pagination
PaginationMeta · object
required

Pagination metadata matching API_STANDARDS.md Section 4.3.1