POST api/Order/PlaceOrder
Request Information
URI Parameters
None.
Body Parameters
OnlineOrderRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| StoreId | globally unique identifier |
None. |
|
| Items | Collection of OrderItemRequest |
None. |
|
| CardNumber | string |
None. |
|
| RedeemedProductId | globally unique identifier |
None. |
|
| Platform | string |
None. |
|
| IsGBDollarPay | boolean |
None. |
|
| IsScheduled | boolean |
None. |
|
| ScheduledAt | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"StoreId": "d56af6ec-03d7-4806-be48-aa66479aee91",
"Items": [
{
"ProductId": "c892ab6f-9b68-4376-a5fc-a44db87dae11",
"ProductPriceId": "929879d1-186f-43ef-918f-e2cbad0ea36e",
"Qty": 3,
"Modifiers": [
{
"ModifierId": "87f909d9-0503-4bcb-923f-445746868e7b",
"ModifierPriceId": "77cf9b2d-ca4e-4523-8286-db9b3848ae3c",
"Qty": 3
},
{
"ModifierId": "87f909d9-0503-4bcb-923f-445746868e7b",
"ModifierPriceId": "77cf9b2d-ca4e-4523-8286-db9b3848ae3c",
"Qty": 3
}
]
},
{
"ProductId": "c892ab6f-9b68-4376-a5fc-a44db87dae11",
"ProductPriceId": "929879d1-186f-43ef-918f-e2cbad0ea36e",
"Qty": 3,
"Modifiers": [
{
"ModifierId": "87f909d9-0503-4bcb-923f-445746868e7b",
"ModifierPriceId": "77cf9b2d-ca4e-4523-8286-db9b3848ae3c",
"Qty": 3
},
{
"ModifierId": "87f909d9-0503-4bcb-923f-445746868e7b",
"ModifierPriceId": "77cf9b2d-ca4e-4523-8286-db9b3848ae3c",
"Qty": 3
}
]
}
],
"CardNumber": "sample string 2",
"RedeemedProductId": "7a22a640-1886-4bf8-b01e-ab9a2d99ebc7",
"Platform": "sample string 3",
"IsGBDollarPay": true,
"IsScheduled": true,
"ScheduledAt": "2026-09-10T08:20:48.4332389+10:00"
}
application/xml, text/xml
Sample:
<OnlineOrderRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi2.Controllers">
<CardNumber>sample string 2</CardNumber>
<IsGBDollarPay>true</IsGBDollarPay>
<IsScheduled>true</IsScheduled>
<Items>
<OrderItemRequest>
<Modifiers>
<ModifierRequest>
<ModifierId>87f909d9-0503-4bcb-923f-445746868e7b</ModifierId>
<ModifierPriceId>77cf9b2d-ca4e-4523-8286-db9b3848ae3c</ModifierPriceId>
<Qty>3</Qty>
</ModifierRequest>
<ModifierRequest>
<ModifierId>87f909d9-0503-4bcb-923f-445746868e7b</ModifierId>
<ModifierPriceId>77cf9b2d-ca4e-4523-8286-db9b3848ae3c</ModifierPriceId>
<Qty>3</Qty>
</ModifierRequest>
</Modifiers>
<ProductId>c892ab6f-9b68-4376-a5fc-a44db87dae11</ProductId>
<ProductPriceId>929879d1-186f-43ef-918f-e2cbad0ea36e</ProductPriceId>
<Qty>3</Qty>
</OrderItemRequest>
<OrderItemRequest>
<Modifiers>
<ModifierRequest>
<ModifierId>87f909d9-0503-4bcb-923f-445746868e7b</ModifierId>
<ModifierPriceId>77cf9b2d-ca4e-4523-8286-db9b3848ae3c</ModifierPriceId>
<Qty>3</Qty>
</ModifierRequest>
<ModifierRequest>
<ModifierId>87f909d9-0503-4bcb-923f-445746868e7b</ModifierId>
<ModifierPriceId>77cf9b2d-ca4e-4523-8286-db9b3848ae3c</ModifierPriceId>
<Qty>3</Qty>
</ModifierRequest>
</Modifiers>
<ProductId>c892ab6f-9b68-4376-a5fc-a44db87dae11</ProductId>
<ProductPriceId>929879d1-186f-43ef-918f-e2cbad0ea36e</ProductPriceId>
<Qty>3</Qty>
</OrderItemRequest>
</Items>
<Platform>sample string 3</Platform>
<RedeemedProductId>7a22a640-1886-4bf8-b01e-ab9a2d99ebc7</RedeemedProductId>
<ScheduledAt>2026-09-10T08:20:48.4332389+10:00</ScheduledAt>
<StoreId>d56af6ec-03d7-4806-be48-aa66479aee91</StoreId>
</OnlineOrderRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.