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": "1bd960ae-a253-4087-83c9-c63acb03d3b1",
"BillingAddressID": "c54d4732-c74b-40d6-8162-77b7f516d662",
"Clearing": {
"PaymentMethodID": "fde45cfc-d182-45f7-995e-576fffa9f6ab",
"ClearingResult": "sample string 2"
},
"Shipping": {
"ShippingAddressID": "ab9eb487-1ace-4e74-93f9-7ed1d66f676d",
"DeliveryServiceID": "8b48d49a-20d1-48f8-b240-2890899a617a"
},
"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": "ab1cd537-1466-4196-ab58-caf8df77d0e3",
"OrderLegacyID": 2,
"OrderFriendlyID": 3
}