Atlas Open API
  1. Carts
Atlas Open API
  • Introduction
  • Authentication
  • Date and Time
  • Errors
  • Webhooks
    • Incoming
      • Reservations (BETA)
    • Outgoing
      • Menus, Stocks, Orders, Outlets, Users
  • Menus
    • Menu List
      GET
    • Menu Details
      GET
    • Menu Create or Update
      POST
  • Orders
    • Create Order
      POST
    • Order Details
      GET
    • Update Order
      PATCH
  • Stocks
    • Outlet Stocks
      GET
  • Users
    • User Sync
      POST
  • Tables
    • Tables
      GET
  • Carts
    • Create cart
      POST
  1. Carts

Create cart

POST
/admin/v1/carts
Creates a new POS cart for the specified table.

Request

Authorization
Add parameter in header
X-Api-Key
Example:
X-Api-Key: ********************
Query Params

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.atlas.kitchen/admin/v1/admin/v1/carts?table_id=123&contact_name&pax' \
--header 'X-Merchant-Id;' \
--header 'X-Api-Key;'

Responses

🟢200Success
application/json
Body

Example
{
  "id": 6633,
  "fulfilment_type": "dine_in",
  "timeslot_type": "asap",
  "payment_type": null,
  "payment_breakdown": {
    "subtotal": 0.00,
    "tax": 0.00,
    "service_charge": 0.00,
    "discount": 0.00,
    "total": 0.00,
    "tax_rate": 0.08,
    "service_charge_rate": 0.10,
    "discount_amount": null,
    "discount_percentage": null
  }
}
🔴500Server Error
🟠401Unauthorized
Modified at 2025-09-01 02:43:35
Previous
Tables
Built with