POST api/Order/PlaceOrderOgalo
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": "cb1f7928-de25-4aeb-bc50-672625be58c1",
"Items": [
{
"ProductId": "ffa4e7b1-741d-444a-9cf5-d47af38a9e8a",
"ProductPriceId": "ca0e966f-e7e3-4eac-b137-03346acd09fe",
"Qty": 3,
"Modifiers": [
{
"ModifierId": "0b14eb28-22fa-4a89-b5d3-2732c19be9ba",
"ModifierPriceId": "28ee7fa6-3830-4d29-953f-1a2690171fd7",
"Qty": 3
},
{
"ModifierId": "0b14eb28-22fa-4a89-b5d3-2732c19be9ba",
"ModifierPriceId": "28ee7fa6-3830-4d29-953f-1a2690171fd7",
"Qty": 3
}
]
},
{
"ProductId": "ffa4e7b1-741d-444a-9cf5-d47af38a9e8a",
"ProductPriceId": "ca0e966f-e7e3-4eac-b137-03346acd09fe",
"Qty": 3,
"Modifiers": [
{
"ModifierId": "0b14eb28-22fa-4a89-b5d3-2732c19be9ba",
"ModifierPriceId": "28ee7fa6-3830-4d29-953f-1a2690171fd7",
"Qty": 3
},
{
"ModifierId": "0b14eb28-22fa-4a89-b5d3-2732c19be9ba",
"ModifierPriceId": "28ee7fa6-3830-4d29-953f-1a2690171fd7",
"Qty": 3
}
]
}
],
"CardNumber": "sample string 2",
"RedeemedProductId": "f31b7a0c-4590-4978-9bab-0ac622361dc2",
"Platform": "sample string 3",
"IsGBDollarPay": true,
"IsScheduled": true,
"ScheduledAt": "2026-08-26T02:55:09.3898271+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>0b14eb28-22fa-4a89-b5d3-2732c19be9ba</ModifierId>
<ModifierPriceId>28ee7fa6-3830-4d29-953f-1a2690171fd7</ModifierPriceId>
<Qty>3</Qty>
</ModifierRequest>
<ModifierRequest>
<ModifierId>0b14eb28-22fa-4a89-b5d3-2732c19be9ba</ModifierId>
<ModifierPriceId>28ee7fa6-3830-4d29-953f-1a2690171fd7</ModifierPriceId>
<Qty>3</Qty>
</ModifierRequest>
</Modifiers>
<ProductId>ffa4e7b1-741d-444a-9cf5-d47af38a9e8a</ProductId>
<ProductPriceId>ca0e966f-e7e3-4eac-b137-03346acd09fe</ProductPriceId>
<Qty>3</Qty>
</OrderItemRequest>
<OrderItemRequest>
<Modifiers>
<ModifierRequest>
<ModifierId>0b14eb28-22fa-4a89-b5d3-2732c19be9ba</ModifierId>
<ModifierPriceId>28ee7fa6-3830-4d29-953f-1a2690171fd7</ModifierPriceId>
<Qty>3</Qty>
</ModifierRequest>
<ModifierRequest>
<ModifierId>0b14eb28-22fa-4a89-b5d3-2732c19be9ba</ModifierId>
<ModifierPriceId>28ee7fa6-3830-4d29-953f-1a2690171fd7</ModifierPriceId>
<Qty>3</Qty>
</ModifierRequest>
</Modifiers>
<ProductId>ffa4e7b1-741d-444a-9cf5-d47af38a9e8a</ProductId>
<ProductPriceId>ca0e966f-e7e3-4eac-b137-03346acd09fe</ProductPriceId>
<Qty>3</Qty>
</OrderItemRequest>
</Items>
<Platform>sample string 3</Platform>
<RedeemedProductId>f31b7a0c-4590-4978-9bab-0ac622361dc2</RedeemedProductId>
<ScheduledAt>2026-08-26T02:55:09.3898271+10:00</ScheduledAt>
<StoreId>cb1f7928-de25-4aeb-bc50-672625be58c1</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.