Tryorder
  1. Cart
Tryorder
  • Branch
    • Pickup List
      GET
    • List by area
      GET
    • Details
      GET
    • List Nearset branches
      GET
  • Menu
    • menu details
      GET
    • menu item details
      GET
  • User
    • Get or Create by Mobile
      POST
    • Logout
      POST
  • Cart
    • Get or Create Cart
      POST
    • Get by id
      GET
    • Checkout
      POST
    • Fast Checkout
      POST
    • Add Item to Cart
      POST
    • Update Quantity
      POST
    • Delete Item from Cart
      DELETE
    • Cancel Coupon
      DELETE
  • Payment
    • Payment Methods
      GET
    • Payment Check
      GET
  • Order
    • Get Order for Customer
      GET
    • Cancel Order
      POST
  1. Cart

Fast Checkout

POST
/api/v1/cart/carts/checkout
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/v1/cart/carts/checkout' \
--header 'Content-Type: application/json' \
--data-raw '{
    "cart_type": "pickup",
    "payment_method_id": "cash",
    "customer_notes": "Please deliver ASAP",
    "delivery_time": "asap",
    "source": "web",
    "order_source": "web",
    "os": "ios",
    "device": "iphone",
    "version": "1.0.0",
    "original_lat": "24.7136",
    "original_long": "46.6753",
    "branch_id": "dc60bc69-87f4-43f0-8252-5cf742a21df1",
    "items": [
        {
            "main_item_id": "5555edae-a137-49d1-a08e-2279fef551e2",
            "qty": 1,
            "cart_item_optiongroups": [],
            "cart_item_insurances": [],
            "customer_notes": ""
        }
    ],
    "custom_tax_number": "123456789",
    "enable_custom_tax": true
}'
Response Response Example
{}

Request

Header Params

Body Params application/json

Examples

Responses

🟢200OK
application/json
Successful response
Body

Modified at 2025-07-23 06:54:02
Previous
Checkout
Next
Add Item to Cart
Built with