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": "48721dff-c726-4207-8b5a-54ef612e48e1",
"BillingAddressID": "e10418d9-86eb-4e0a-a57a-595774a9f3a4",
"Clearing": {
"PaymentMethodID": "897263b4-d297-4afa-8ec7-bc7ee9d560fc",
"ClearingResult": "sample string 2"
},
"Shipping": {
"ShippingAddressID": "760c71c4-0122-4507-bfd9-6b4c6275f7b3",
"DeliveryServiceID": "cfc4d156-5c9d-4a8e-a92b-536b3606c1d1"
},
"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": "488985ef-21de-438d-b756-42766f0d9660",
"OrderLegacyID": 2,
"OrderFriendlyID": 3
}