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": "8289cf64-c286-498c-b1e4-a4a86295a8d2",
"BillingAddressID": "8d0ed0aa-e2da-4eec-817b-46c479b0c871",
"Clearing": {
"PaymentMethodID": "7863adca-766e-4e1e-89c4-7e1b219b42f9",
"ClearingResult": "sample string 2"
},
"Shipping": {
"ShippingAddressID": "d207c793-fd57-48dd-a4c6-50370e9ff362",
"DeliveryServiceID": "69c24517-3116-414c-b007-71f31ce9679f"
},
"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": "59171069-52bb-435f-af06-50418c369c27",
"OrderLegacyID": 2,
"OrderFriendlyID": 3
}