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": "4163a88f-56f1-49be-a1ab-bd8b254e5247",
"BillingAddressID": "f0e0b71d-ac0f-4e08-9428-64b7aa539b5e",
"Clearing": {
"PaymentMethodID": "e3ab36ca-fede-4168-9e83-2321826334a5",
"ClearingResult": "sample string 2"
},
"Shipping": {
"ShippingAddressID": "2c4e1692-49b7-40ac-91ce-20028544863f",
"DeliveryServiceID": "ad8cacaf-b346-4c0c-a4b5-0b65469d117f"
},
"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": "66f50e52-c32c-418d-8f97-1de6d4b3033d",
"OrderLegacyID": 2,
"OrderFriendlyID": 3
}