Skip to main content
GET
/
orders
{
  "items": [
    {
      "orderId": "ce0539b4-ec57-4709-b72e-47892586d05a",
      "status": "PENDING",
      "customerId": "<string>",
      "customer": {
        "customerId": "<string>",
        "name": "<string>"
      },
      "pricing": {
        "subtotal": 123,
        "total": 123,
        "currency": "USD"
      },
      "lineItemCount": 3,
      "validationStatus": "VALID",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "expiresAt": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "total": 123,
    "limit": 123,
    "offset": 123,
    "sort": {
      "key": "<string>",
      "direction": "ASC"
    }
  }
}

Authorizations

X-API-Key
string
header
required

An API key that grants access to the Connect API. You can create and manage API keys in the portal.

Query Parameters

limit
integer
default:100

The maximum number of items to return.

Required range: 1 <= x <= 1000
offset
integer
default:0

The number of items to skip before starting to collect the result set.

Required range: x >= 0
status
enum<string>

Filter by order status

Available options:
PENDING,
CONFIGURED,
SUBMITTED,
PENDING_APPROVAL,
PROCESSING,
COMPLETED,
CANCELLED,
EXPIRED
userId
string

Filter by user ID

customerId
string

Filter by customer ID

expiresAfter
string<date-time>

Filter orders expiring after this date

expiresBefore
string<date-time>

Filter orders expiring before this date

Response

Orders retrieved successfully

items
object[]
required
pagination
object
required
I