POST v1/store/login/user/orders/cart/checkout
Submits the given cart list
Request Information
URI Parameters
None.
Body Parameters
CartCheckoutModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ListID |
The ID of the cart list |
globally unique identifier |
None. |
| BillingAddressID |
The Billing Address ID |
globally unique identifier |
None. |
| Clearing |
The clearing details |
CheckoutClearingModel |
None. |
| Shipping |
The shipping details |
CheckoutShippingModel |
None. |
| OrderComment |
The order comment |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ListID": "a5d32815-5f5a-430a-8098-58953bd20dfe",
"BillingAddressID": "06b4edf0-544d-4277-9ff5-a6464e182978",
"Clearing": {
"PaymentMethodID": "d3a487ba-0964-4f4a-aab2-e522e173b155",
"ClearingResult": "sample string 2"
},
"Shipping": {
"ShippingAddressID": "e3256616-fbc9-4d24-ac32-0ef210d8de0d",
"DeliveryServiceID": "b06167ee-fcdb-45fd-93ff-6ceb83090510"
},
"OrderComment": "sample string 2"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CartCheckoutResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderID |
The order ID |
globally unique identifier |
None. |
| OrderLegacyID |
The order legacy ID |
integer |
None. |
| OrderFriendlyID |
The order friendly ID |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"OrderID": "95c2efc1-e0a1-4492-8dff-04baed21d961",
"OrderLegacyID": 2,
"OrderFriendlyID": 3
}