Documentation Index
Fetch the complete documentation index at: https://colossal.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Queries
order
Fetch an order by UID.
Types
Order
| Field | Type | Description |
|---|---|---|
uid | UUID | Order ID |
status | PENDING | CONFIRMED | COMPLETE | REFUNDED | Order status |
subtotalAmount | Decimal | Subtotal before tax |
tax | Decimal | Tax amount |
totalAmount | Decimal | Total including tax |
customer | Customer? | Customer who placed the order |
billingAddress | Address? | Billing address |
lineItems | [OrderLineItem] | Items in the order |
createdAt | DateTime | |
updatedAt | DateTime |
OrderLineItem
| Field | Type | Description |
|---|---|---|
uid | UUID | Line item ID |
quantity | Int | Quantity purchased |
unitPrice | Decimal | Price per unit |
totalPrice | Decimal | Total for this line |
sku | String? | SKU |
variantProperties | JSON? | Variant properties at time of purchase |
image | String? | Product image URL |