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": "701da393-a482-406e-b2ca-9cb2fcd33fa5",
"BillingAddressID": "bc5d8732-05a6-40fc-89c0-f64cc2b37901",
"Clearing": {
"PaymentMethodID": "f98c506a-e069-447a-8045-7141db636cb7",
"ClearingResult": "sample string 2"
},
"Shipping": {
"ShippingAddressID": "db865348-d41c-4b6b-b42b-706d56c5c8b6",
"DeliveryServiceID": "48644792-68c9-4baa-91e4-7ae4f38135ae"
},
"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": "3a330b83-2ea0-4cbf-ab1d-5c1d6fa23429",
"OrderLegacyID": 2,
"OrderFriendlyID": 3
}