Skip to main content
POST
/
cart
/
validation
Validate cart
curl --request POST \
  --url https://api.atlas.kitchen/storefronts/v1/cart/validation \
  --header 'X-Channel-Id: <api-key>' \
  --header 'X-Session-Id: <api-key>'
{
  "valid": true,
  "token": "2562e42b05708d6475971f1e922c0630",
  "errors": null
}

Documentation Index

Fetch the complete documentation index at: https://help.atlas.kitchen/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Channel-Id
string
header
required

Merchant storefront identifier. Provided during onboarding.

X-Session-Id
string
header
required

Diner session identifier. Created by GET /channel and returned in the X-Session-Id response header.

Response

200 - application/json

Validation result

valid
boolean
token
string | null

MD5 hash for duplicate payment prevention. Null when invalid.

errors
object[] | null