GET
/
v1
/
order_items
/
{id}
Order item details
curl --request GET \
  --url https://api.kajabi.com/v1/order_items/{id} \
  --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.

Path Parameters

id
string
required

Query Parameters

include
string

Load the related resources, for example ?include=order

fields[order_items]
string

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

Response

Success, shows details of an order item

data
object