Places a new order in the specified store, taking in the order details and user session token.
Request
Body Params application/json
{
"tableId": "string",
"orderTime": "2019-08-24T14:15:22Z",
"totalItemsPrice": 0,
"paymentMethod": "string",
"viewTrackerId": "string",
"itemList": [
{
"itemId": "string",
"image": "string",
"name": "string",
"description": "string",
"price": 0,
"quantity": 0,
"totalPrice": 0,
"additionalOptions": [
"string"
]
}
]
}
Request Code Samples
curl --location --request POST 'https://gateway.storeharmony.com/cloudapi/restro//place-order' \
--header 'sessiontoken;' \
--header 'Content-Type: application/json' \
--data-raw '{
"tableId": "string",
"orderTime": "2019-08-24T14:15:22Z",
"totalItemsPrice": 0,
"paymentMethod": "string",
"viewTrackerId": "string",
"itemList": [
{
"itemId": "string",
"image": "string",
"name": "string",
"description": "string",
"price": 0,
"quantity": 0,
"totalPrice": 0,
"additionalOptions": [
"string"
]
}
]
}'
Responses
*/*
Order placed successfully and a response with order details is returned.
Modified at 2025-03-27 14:31:04