GET
/
v1
/
order_items
List order items
curl --request GET \
  --url https://api.kajabi.com/v1/order_items \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "type": "order_items",
      "attributes": {
        "quantity": 123,
        "currency_code": "<string>",
        "item_type": "<string>",
        "item_id": 123,
        "title": "<string>",
        "fulfilled_at": "<string>",
        "created_at": "2023-11-07T05:31:56Z",
        "total_price_in_cents": 123,
        "subtotal_in_cents": 123,
        "sales_tax_amount_in_cents": 123,
        "discount_amount_in_cents": 123,
        "formatted_total_price": "<string>",
        "formatted_subtotal": "<string>",
        "currency_symbol": "<string>"
      },
      "relationships": {
        "order": {
          "data": {
            "id": "<string>",
            "type": "<string>"
          }
        }
      }
    }
  ],
  "links": {
    "self": "<string>",
    "current": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

sort
string

Sort order, use: created_at, quantity, fulfilled_at. For descending order use '-' e.g. &sort=-created_at

page[number]
integer
page[size]
integer

Number of documents

fields[order_items]
string

Partial attributes as specified, e.g. fields[order_items]=quantity,title,total_price_in_cents

filter[site_id]
string

Filter by site_id, for example ?filter[site_id]=111

filter[item_type_eq]
string

Filter by item type, for example ?filter[item_type_eq]=Offer

filter[item_id_eq]
string

Filter by item ID, for example ?filter[item_id_eq]=123

filter[fulfilled_at_null]
boolean

Filter by fulfillment status, for example ?filter[fulfilled_at_null]=true

Response

Success, list of order items which the current user may access

data
object[]