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": "662b04d0-1e1f-43de-8177-018fc0e433a1",
"BillingAddressID": "61c13c46-2206-44f4-9ab0-e7162b8a2823",
"Clearing": {
"PaymentMethodID": "bf39cb13-be28-4432-bbef-d6d4af362161",
"ClearingResult": "sample string 2"
},
"Shipping": {
"ShippingAddressID": "38cf381c-0629-43ff-89bf-2d0edf23c9a1",
"DeliveryServiceID": "40f40fe1-35d2-4a37-b60b-70489ad40837"
},
"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": "3ab09017-97ed-43d2-8daa-5715a6ed845d",
"OrderLegacyID": 2,
"OrderFriendlyID": 3
}