Skip to main content
PATCH
/
cart
Update cart
curl --request PATCH \
  --url https://api.atlas.kitchen/storefronts/v1/cart \
  --header 'Content-Type: application/json' \
  --header 'X-Channel-Id: <api-key>' \
  --header 'X-Session-Id: <api-key>' \
  --data '
{
  "outlet_id": 123,
  "brand_id": 123,
  "fulfilment_type": "delivery",
  "serving_date": "2023-12-25",
  "timeslot_start": 123,
  "timeslot_end": 123,
  "timeslot_type": "asap",
  "contact_name": "<string>",
  "contact_email": "jsmith@example.com",
  "contact_number": "<string>",
  "address_line1": "<string>",
  "address_line2": "<string>",
  "address_latitude": 123,
  "address_longitude": 123,
  "postal_code": "<string>",
  "is_gift": true,
  "recipient_name": "<string>",
  "recipient_contact_number": "<string>",
  "gift_message": "<string>",
  "notes": "<string>"
}
'
{
  "id": 2,
  "channel_id": 1,
  "outlet_id": 1,
  "brand_id": 1,
  "user_id": null,
  "timeslot_start": 34200,
  "timeslot_end": 36000,
  "timeslot_type": "available_timeslots",
  "fulfilment_type": "delivery",
  "notes": null,
  "is_gift": false,
  "recipient_name": null,
  "recipient_contact_number": null,
  "gift_message": null,
  "promo_code": null,
  "is_checked_out": false,
  "use_points": false,
  "serving_date": "2026-04-17",
  "timeslot_range": "9:30AM–10:00AM",
  "contact_email": "jane@example.com",
  "contact_name": "Jane Doe",
  "contact_number": "+6591234567",
  "address_line1": "123 Orchard Road",
  "address_line2": "#04-56",
  "address_longitude": 103.8198,
  "address_latitude": 1.3021,
  "postal_code": "238858",
  "brand": {
    "name": "Aviato Burger"
  },
  "cart_items": []
}

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.

When you set outlet_id, the API auto-derives brand_id from the outlet’s branded ChannelLink configuration — you don’t need to (and shouldn’t) set brand_id manually.

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.

Body

application/json
outlet_id
integer
brand_id
integer
fulfilment_type
enum<string>
Available options:
delivery,
pickup
serving_date
string<date>
timeslot_start
integer
timeslot_end
integer
timeslot_type
enum<string>
Available options:
asap,
available_timeslots
contact_name
string
contact_email
string<email>
contact_number
string
address_line1
string
address_line2
string
address_latitude
number<double>
address_longitude
number<double>
postal_code
string

6-digit Singapore postal code

is_gift
boolean
recipient_name
string
recipient_contact_number
string
gift_message
string
notes
string

Response

Updated cart

id
integer
channel_id
integer
outlet_id
integer | null
brand_id
integer | null
user_id
integer | null
timeslot_start
integer | null
timeslot_end
integer | null
timeslot_type
enum<string>
Available options:
asap,
available_timeslots
timeslot_range
string | null
fulfilment_type
enum<string>
Available options:
delivery,
pickup
serving_date
string<date>
contact_name
string | null
contact_email
string | null
contact_number
string | null
address_line1
string | null
address_line2
string | null
address_latitude
number<double> | null
address_longitude
number<double> | null
postal_code
string | null
notes
string | null
is_gift
boolean
recipient_name
string | null
recipient_contact_number
string | null
gift_message
string | null
promo_code
string | null
is_checked_out
boolean
use_points
boolean
brand
object
cart_items
object[]