Order

Retrieve order items

Retrieves the line items belonging to the order identified by the specified slug.

get/order/{order_slug}/items

Query parameters

pagestring

Specify the page number to return.

per_pagestring

Limit the number of items returned to between 1 and 100.

Headers

Accept'application/vnd.Creative Force.v2.3+json' | 'application/vnd.Creative Force.v2.3+xml' required

Defines the response type.

x-api-languagestring[]

Defines the languages included in the response. If omitted, the account default language is used.

Value all overrides any other values present.

Response

Order items retrieved.

current_pageinteger

Number of the page returned by this response. The first page is 1.

first_page_urlstring uri

URL of the first page in the result set.

frominteger

Position of the first record on this page within the full result set. The first record is at position 1.

last_pageinteger

Number of the last page. Equals the total number of pages.

last_page_urlstring uri

URL of the last page in the result set.

next_page_urlstring

URL of the next page in the result set.

Empty string when the current page is the last page.

pathstring uri

Canonical URL of the endpoint, without query parameters.

per_pageinteger

Maximum number of records returned per page.

prev_page_urlstring

URL of the previous page in the result set.

Empty string when the current page is the first page.

tointeger

Position of the last record on this page within the full result set.

totalinteger

Total number of records across all pages.

Example response

{
  "current_page": 1,
  "data": [
    {
      "address": "12 Example Street",
      "category": {
        "slug": "CdEfGhIj",
        "link": "https://api.au.cr4ce.com/category/CdEfGhIj",
        "name": {
          "en_GB": "Photography"
        }
      },
      "chapter": {
        "slug": "EfGhIjKl",
        "link": "https://api.au.cr4ce.com/chapter/EfGhIjKl",
        "name": {
          "en_GB": "National"
        }
      },
      "city": "London",
      "company": "Example Productions Ltd",
      "country": "United Kingdom",
      "created_at": "2026-01-15T09:00:00Z",
      "currency": "GBP",
      "description": "Entry: Sustainable Cities Initiative | Chapter: National | Category: Photography",
      "discount": 0,
      "discount_code": "",
      "entry_name": "Sustainable Cities Initiative",
      "entry_slug": "AbCdEfGh",
      "invoice_number": "INV-001234",
      "ip_address": "203.0.113.42",
      "member_number": "",
      "parent_category": null,
      "payment_method": "card",
      "payment_status": "paid",
      "postcode": "EC1A 1BB",
      "price": "Standard entry",
      "region": "",
      "season": {
        "slug": "QrStUvWx",
        "link": "https://api.au.cr4ce.com/season/QrStUvWx",
        "name": {
          "en_GB": "2025"
        }
      },
      "slug": "YzAbCdEf",
      "state": "",
      "subtotal": 50,
      "tax_term": "VAT",
      "transaction_date": "2026-01-15T09:01:00Z",
      "transaction_provider": "stripe",
      "transaction_reference": "REDACTED",
      "transaction_status": "succeeded",
      "type": "Entry",
      "user": {
        "slug": "OpQrStUv",
        "link": "https://api.au.cr4ce.com/user/OpQrStUv",
        "name": "Jane Smith",
        "first_name": "Jane",
        "last_name": "Smith",
        "email": "jane.smith@example.com"
      },
      "vat_number": "GB123456789"
    }
  ],
  "first_page_url": "https://api.au.cr4ce.com/order/YzAbCdEf/items?page=1",
  "from": 1,
  "last_page": 1,
  "last_page_url": "https://api.au.cr4ce.com/order/YzAbCdEf/items?page=1",
  "next_page_url": "",
  "path": "https://api.au.cr4ce.com/order/YzAbCdEf/items",
  "per_page": 10,
  "prev_page_url": "",
  "to": 1,
  "total": 1
}

Changes