Checkout Intents
Retrieve order
Retrieve the order associated with a checkout intent.
Returns the single order created when the checkout intent reached the completed state. 404 if the intent has not produced an order yet.
get/api/v1/checkout-intents/{id}/order
Path parameters
idstring required
The id of the checkout intent to look up
Response
The order
Example response
{
"checkoutIntentId": "ci_aaa8af5c5aae4c0e8ef0172c26c65c13",
"buyer": {
"postalCode": "10001",
"country": "US",
"province": "NY",
"city": "New York",
"address2": "Apt 1",
"address1": "123 Main St",
"phone": "1234567890",
"email": "john.doe@example.com",
"lastName": "Doe",
"firstName": "John"
},
"createdAt": "2026-03-25T00:00:00Z",
"updatedAt": "2026-03-27T00:00:00Z",
"referenceId": "order-1234"
}Changes
Changed in 4 of the 48 revisions of this API.4
- ○
added the required property
buyerto the response with the200statusresponse-required-property-added
- ○
- ○
added the required property
cancellationto the response with the200statusresponse-required-property-added
- ○
- ○
added the optional property
referenceIdto the response with the200statusresponse-optional-property-added
- ○
- ○
endpoint added
endpoint-added
- ○