Skip to main content
Sitecore Documentation
  • Learn
  • Downloads
  • Changelog
  • Roadmap
CDPCloud Portal
Sitecore CDP Developer Documentation
  • Developing with Sitecore CDP
    • Base URL
    • Response codes
    • REST API Guest v2.1
    • REST API Guest data extension v2.1
    • REST API Order v2.1
    • REST API Order contact v2.1
    • REST API Order consumer v2.1
    • REST API Order data extension v2.1
    • REST API Order item data extension v2.1
    • REST API Audience export
            • Differences between v2 and v2.1
            • Create an order (legacy)
            • Retrieve orders (legacy)
            • Retrieve an order (legacy)
            • Update an order (legacy)
  1. Order REST API v2 (legacy)
  1. REST APIs
  2. Legacy REST APIs
  3. Order REST API v2 (legacy)
  4. Retrieve orders (legacy)

Retrieve orders (legacy)

Important

A newer version of this REST API (v2.1) is available. If you're new to this REST API, use the new version. Alternatively, if you're already using the old version, read about the differences between v2 and v2.1 so you can upgrade.

Make one of the following requests:

  • GET /v2/orders?referenceId=<referenceId>

  • GET /v2/orders?guestRef=<guestRef>

Retrieves a list of orders. You must include either the referenceId of the order or the guestRef as a query string parameter in the URI of the request.

Parameter name

Type

Description

Example

referenceId

string

A unique ID generated by your organization to reference the order. For flight orders, this is often the PNR.

2d7de9df-45a2-45ea-872c-30e45139007d

guestRef

string

The reference of the guest record.

If you do not know the guest reference, first retrieve guests.

f7aabbca-1c1b-4fc2-be72-3e16294a4f03

In the response, in items.href, the order reference is the string that follows the final slash:

"href": "<baseURL>/v2/orders/<orderRef>"

You use the order reference to interact with a specific order, for example, to retrieve or update it.

Retrieving orders using referenceId:

curl -X GET '<baseURL>/v2/orders?referenceId=2d7de9df-45a2-45ea-872c-30e45139007d' \
-u '<username>:<password>' \
-H 'Accept: application/json'

Retrieving orders using guestRef:

curl -X GET '<baseURL>/v2/orders?guestRef=f7aabbca-1c1b-4fc2-be72-3e16294a4f03' \
-u '<username>:<password>' \
-H 'Accept: application/json'
{
    "href": "<baseURL>/v2/orders?offset=0&limit=10&guestRef=f7aabbca-1c1b-4fc2-be72-3e16294a4f03",
    "offset": 0,
    "limit": 10,
    "first": {
        "href": "<baseURL>/v2/orders?offset=0&limit=10&guestRef=f7aabbca-1c1b-4fc2-be72-3e16294a4f03"
    },
    "last": {
        "href": "<baseURL>/v2/orders?offset=0&limit=10&guestRef=f7aabbca-1c1b-4fc2-be72-3e16294a4f03"
    },
    "items": [
        {
            "href": "<baseURL>/v2/orders/d680c9be-4c07-4731-857e-9602034b15f2"
        },
        {
            "href": "<baseURL>/v2/orders/9932bee2-25c2-4653-9ad3-8865865036d9"
        },­­­
        {
            "href": "<baseURL>/v2/orders/4b8eeee6-37f1-41ad-92fb-79e802db29a7"
        }
    ]
}
If you have suggestions for improving this article, let us know!

Documentation Assistant

This assistant uses AI to generate responses based on Sitecore documentation. While it has access to official sources, answers may be incomplete or inaccurate and should not be considered official advice or support.
Powered by
k
kapa.ai
Protected by reCAPTCHA

© Copyright 2026, Sitecore A/S or a Sitecore affiliated company.
All rights reserved.

Privacy policySitecore Trust CenterTerms of use