POST api/ms/orders/checkout
Checkout Orders
Request Information
URI Parameters
None.
Body Parameters
m_order_checkout| Name | Description | Type | Additional information |
|---|---|---|---|
| AddressId | integer |
Required |
|
| Orders | Collection of m_order |
None. |
Request Formats
application/json, text/json
Sample:
{
"AddressId": 1,
"Orders": [
{
"OrderId": 1
},
{
"OrderId": 1
}
]
}
application/xml, text/xml
Sample:
<m_order_checkout xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KFA.Modules.Models.Mainsystem">
<AddressId>1</AddressId>
<Orders>
<m_order>
<OrderId>1</OrderId>
</m_order>
<m_order>
<OrderId>1</OrderId>
</m_order>
</Orders>
</m_order_checkout>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.