Atlas Open API
  1. Responses
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
    • Order Details (with Identifier)
      GET
  • Stocks
    • Outlet Stocks
  • Users
    • User Sync
  • Tables
    • Tables
  • Carts
    • Create cart
  • Schemas
    • Menus
      • Menu
      • MenuPayload
      • Section
      • SectionPayload
      • SubSection
    • Orders
      • Base
        • Order
        • OrderItem
        • OrderPayment
      • Requests
        • OrderRequest
        • OrderItemRequest
      • Responses
        • OrderItemResponse
        • OrderResponse
    • Products
      • Product
      • ProductPayload
      • ItemModifierGroup
      • ModifierGroup
      • ModifierGroupPayload
      • Modifier
      • ModifierItem
      • ModifierItemPayload
      • ExternalItemLinkPayload
    • Stocks
      • Stock
    • Errors
      • ApiError
      • FieldError
    • Webhooks
      • Webhook
      • MenuUpdatedWebhook
      • OrderCreatedPayload
      • OrderCreatedWebhook
      • StockUpdatedPayload
      • StockUpdatedWebhook
    • Cart
      • CartPayment
    • ReservationEventPayload
  1. Responses

OrderResponse

{
    "id": 0,
    "user_id": 0,
    "channel_id": 0,
    "outlet_id": 0,
    "brand_id": 0,
    "identifier": "string",
    "state": "unpaid",
    "fulfilment_type": "dine_in",
    "serving_date": "2019-08-24",
    "timeslot_start": 0,
    "timeslot_end": 0,
    "timeslot_type": "asap",
    "timeslot_range": "string",
    "order_items": [
        {
            "id": 0,
            "item_id": 0,
            "name": "string",
            "quantity": 1,
            "price_cents": 0,
            "currency": "string",
            "discount": 0,
            "notes": "string",
            "calculated_subtotal": 0,
            "per_unit_quantity": 0,
            "unit_label": "string",
            "product_tags": [
                "string"
            ],
            "kitchen_tags": [
                "string"
            ],
            "report_category": "string",
            "voided": true,
            "sub_items": [
                {
                    "id": 0,
                    "item_id": 0,
                    "name": "string",
                    "quantity": 1,
                    "price_cents": 0,
                    "currency": "string",
                    "discount": 0,
                    "notes": "string",
                    "calculated_subtotal": 0,
                    "per_unit_quantity": 0,
                    "unit_label": "string",
                    "product_tags": [
                        "string"
                    ],
                    "kitchen_tags": [
                        "string"
                    ],
                    "report_category": "string",
                    "voided": true
                }
            ]
        }
    ],
    "contact_name": "string",
    "contact_email": "string",
    "contact_number": "string",
    "address_line1": "string",
    "address_line2": "string",
    "external_order_id": "string",
    "external_order_short_code": "string",
    "call_number": "string",
    "postal_code": "string",
    "address_latitude": 0,
    "address_longitude": 0,
    "is_cutlery_required": false,
    "is_contactless": false,
    "notes": "string",
    "is_gift": false,
    "recipient_name": "string",
    "recipient_contact_number": "string",
    "gift_message": "string",
    "is_paid": false,
    "promo_code": "string",
    "created_at": 0,
    "updated_at": 0,
    "cancelled_at": 0,
    "completed_at": 0,
    "donation_amount": 0,
    "confirmation_custom_message": "string"
}
Built with