# Get Line Items Get all line items for an order. Endpoint: GET /v1/orders/{orderId}/line-items Security: OAuth2 ## Path parameters: - `orderId` (string, required) The unique identifier of the order. ## Response 200 fields (application/json): - `items` (array) - `items.quantity` (integer, required) The quantity of the line item. - `items.unit_price` (object, required) The unit price of the line item. - `items.unit_price.currency` (string, required) The ISO 4217 currency code. Example: "USD" - `items.unit_price.value` (integer, required) The price in the smallest currency unit (e.g. cents for USD). Example: 2500 - `items.unit_price.exponent` (integer, required) The number of decimal places for the currency. Example: 2 - `items.unit_vat_amount` (object, required) The unit VAT amount of the line item. - `items.product_type` (string, required) The type of product for this line item. Enum: "TICKET", "GIFTCARD", "TICKET_ADDON" - `items.product_id` (string, required) The unique identifier of the product. - `items.details` (any, required) Product-specific details based on the product type. - `items.discount` (object) The discount applied to the line item. ## Response 400 fields (application/json): - `message` (string, required) - `code` (string, required) ## Response 404 fields (application/json): - `message` (string, required) - `code` (string, required) ## Response default fields (application/json): - `message` (string, required) - `code` (string, required)