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": "b3fea009-d541-47af-9ad4-2ada205f397c",
"BillingAddressID": "fc1c144b-6fd0-41ff-a9c9-a5bce6e3c395",
"Clearing": {
"PaymentMethodID": "60537d7f-99ec-461e-9ba5-19223f13586a",
"ClearingResult": "sample string 2"
},
"Shipping": {
"ShippingAddressID": "ba1a8d9f-4dfb-49c5-8cd9-d95d4af9c477",
"DeliveryServiceID": "596d5095-876a-4ec3-97b6-ab0015d5675f"
},
"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": "e048578c-23fd-409b-9bed-b3d2591fbd59",
"OrderLegacyID": 2,
"OrderFriendlyID": 3
}