For the complete documentation index, see llms.txt. This page is also available as Markdown.

Checkout Options (DOMS)

Endpoints used by shops to get the current available pickup stores and available service levels like Same-Day delivery.

List all record items (search cached for 5 minutes)

post

This part of the API is in Beta status. For details, see the API release lifecycle documentation. Search for LookupRecordItem

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body

LookupRecordItemSearchPayload

afterstringOptional

The cursor to start after for forward pagination. The value is provided in the pageInfo.endCursor field of the response. Cannot be used with before or last.

beforestringOptional

The cursor to start before for backward pagination. The value is provided in the pageInfo.startCursor field of the response. Cannot be used with after or size (first).

lastnumber · min: 1 · max: 250Optional

Number of items to return for backward pagination. Cannot be used with 'size' (first). Default: 20.

sizenumber · min: 1 · max: 250Optional

Number of items to return for forward pagination. Cannot be used with 'last'. Default: 20.

Example: 10
startAfterIdstringOptionalDeprecated

The ID to start after. Deprecated, use after with the value provided in pageInfo.endCursor instead.

Responses
200

Your search result

application/json

LookupRecordItemPaginatedResult

totalnumberOptional

The total number of items matching the search criteria. Only filled, if withTotal is set to true in the search options.

post/api/lookuprecorditems/search

Get all lookup records

get

Retrieves all lookup records.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
200

Successfully retrieved the lookup records.

application/json

LookupRecord

attributeDefinitionsobject · LookupAttributeDefinitionsRequired

LookupAttributeDefinitions

createdstring · date-timeOptional

The date when the record was created.

idstringRequiredExample: 0190d6e8-8c3a-7f1b-9d2e-4a6b8c0d1e2f
lastModifiedstring · date-timeOptional

The date when the record was last modified.

tenantRecordIdstring · min: 1 · max: 20Optional

Tenant-specific identifier for the lookup record.

Example: MY_RECORD_ID
versionnumberRequired

The version of the record.

Example: 1
get/api/lookuprecords

Create a lookup record by its ID

post

Creates a single lookup record.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body

LookupRecordForCreation

attributeDefinitionsobject · LookupAttributeDefinitionsRequired

LookupAttributeDefinitions

tenantRecordIdstring · min: 1 · max: 20Optional

Tenant-specific identifier for the lookup record.

Example: MY_RECORD_ID
Responses
200

Successfully created the lookup record.

application/json

LookupRecord

attributeDefinitionsobject · LookupAttributeDefinitionsRequired

LookupAttributeDefinitions

createdstring · date-timeOptional

The date when the record was created.

idstringRequiredExample: 0190d6e8-8c3a-7f1b-9d2e-4a6b8c0d1e2f
lastModifiedstring · date-timeOptional

The date when the record was last modified.

tenantRecordIdstring · min: 1 · max: 20Optional

Tenant-specific identifier for the lookup record.

Example: MY_RECORD_ID
versionnumberRequired

The version of the record.

Example: 1
post/api/lookuprecords

Get a lookup record by its ID

get

Retrieves a single lookup record using its unique identifier.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
recordIdstringRequired
Responses
200

Successfully retrieved the lookup record.

application/json

LookupRecord

attributeDefinitionsobject · LookupAttributeDefinitionsRequired

LookupAttributeDefinitions

createdstring · date-timeOptional

The date when the record was created.

idstringRequiredExample: 0190d6e8-8c3a-7f1b-9d2e-4a6b8c0d1e2f
lastModifiedstring · date-timeOptional

The date when the record was last modified.

tenantRecordIdstring · min: 1 · max: 20Optional

Tenant-specific identifier for the lookup record.

Example: MY_RECORD_ID
versionnumberRequired

The version of the record.

Example: 1
get/api/lookuprecords/{recordId}

Updates a whole lookup record by its ID

put

Updates a single lookup record.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
recordIdstringRequired
Body

LookupRecordForUpdate

attributeDefinitionsobject · LookupAttributeDefinitionsRequired

LookupAttributeDefinitions

tenantRecordIdstring · min: 1 · max: 20Optional

Tenant-specific identifier for the lookup record.

Example: MY_RECORD_ID
versionnumberRequired

The version of the record.

Example: 1
Responses
200

Successfully updated the lookup record.

application/json

LookupRecord

attributeDefinitionsobject · LookupAttributeDefinitionsRequired

LookupAttributeDefinitions

createdstring · date-timeOptional

The date when the record was created.

idstringRequiredExample: 0190d6e8-8c3a-7f1b-9d2e-4a6b8c0d1e2f
lastModifiedstring · date-timeOptional

The date when the record was last modified.

tenantRecordIdstring · min: 1 · max: 20Optional

Tenant-specific identifier for the lookup record.

Example: MY_RECORD_ID
versionnumberRequired

The version of the record.

Example: 1
put/api/lookuprecords/{recordId}

Delete a lookup record by its ID

delete

Deletes a single lookup record using its unique identifier.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
recordIdstringRequired
Responses
200

Successfully deleted the lookup record.

application/json

LookupRecord

attributeDefinitionsobject · LookupAttributeDefinitionsRequired

LookupAttributeDefinitions

createdstring · date-timeOptional

The date when the record was created.

idstringRequiredExample: 0190d6e8-8c3a-7f1b-9d2e-4a6b8c0d1e2f
lastModifiedstring · date-timeOptional

The date when the record was last modified.

tenantRecordIdstring · min: 1 · max: 20Optional

Tenant-specific identifier for the lookup record.

Example: MY_RECORD_ID
versionnumberRequired

The version of the record.

Example: 1
delete/api/lookuprecords/{recordId}
Deprecated

Create checkout options

post

This part of the API is deprecated. For details, see the API release lifecycle documentation. Evaluate a checkout options input against the DOMS.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body

CheckoutOptionsInput

filterDuplicatesbooleanOptional

Filter duplicate facilities

Example: true
orderLineItemsobject[]Required

Order line items

tagsobject[]Optional

Tags

Responses
200

The request could be evaluated

application/json
or
post/api/promises/checkoutoptions

Get earliest collect

post

Get earliest collect timepoint for a given checkoutOption

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body

CheckoutOptionsCollectEarliestRequest

desiredCollectDatestring · date-timeOptional

Desired collection date

Example: 2026-06-17T12:00:00.000Z
includeCalculationHintsbooleanOptional

Whether to include calculation hints in the response

Example: true
tenantArticleIdsstring[] · min: 1Required

List of tenant article IDs

Responses
200

The request could be evaluated

application/json

CheckoutOptionsCollectEarliestResponse

calculationHintsstring[]Optional

Calculation hints

post/api/promises/checkoutoptions/collect/earliest

Get earliest delivery

post

Get earliest delivery timepoint for a given checkoutOption

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body

CheckoutOptionsDeliveryEarliestRequest

earliestDeliveryDatestring · date-timeOptional

Earliest delivery date

Example: 2026-06-17T12:00:00.000Z
includeCalculationHintsbooleanOptional

Whether to include calculation hints in the response

Example: true
includeListingDetailsbooleanOptional

Indicates whether listing-related details should be included in the response. If set to true, the response contains additional listing details. Defaults to false.

tenantArticleIdsstring[] · min: 1Required

List of tenant article IDs

Responses
200

The request could be evaluated

application/json

CheckoutOptionsDeliveryEarliestResponse

calculationHintsstring[]Optional

Calculation hints for debugging

post/api/promises/checkoutoptions/delivery/earliest

Get delivery time period

post
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body

CheckoutOptionsDeliveryTimePeriodRequest

endDatestring · date-timeOptional

End date-time of the period

Example: 2026-06-17T12:00:00.000Z
includeCalculationHintsbooleanOptional

Whether to include calculation hints in the response

Example: true
startDatestring · date-timeOptional

Start date-time of the period

Example: 2026-06-17T12:00:00.000Z
Responses
200

The request could be evaluated

application/json

CheckoutOptionsDeliveryTimePeriodResponse

calculationHintsstring[]Optional

Calculation hints

post/api/promises/checkoutoptions/delivery/timeperiod

Get delivery timepoint

post

This endpoint is to be used to get information about the possible delivery of items.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body

CheckoutOptionsDeliveryTimePointRequest

desiredDeliveryDatestring · date-timeRequired

Desired delivery date-time

Example: 2026-06-17T12:00:00.000Z
tenantArticleIdsstring[]Required

Tenant article IDs

Responses
200

The request could be evaluated

application/json

CheckoutOptionsDeliveryTimePointResponse

post/api/promises/checkoutoptions/delivery/timepoint

Last updated