POST api/Order
Request Information
URI Parameters
None.
Body Parameters
PlaceOrderDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Currency | string |
None. |
|
| PersonId | globally unique identifier |
None. |
|
| OrderLines | Collection of PlaceOrderLineDto |
None. |
|
| DeliveryMethod | string |
None. |
|
| PaymentMethod | string |
None. |
|
| IsSubscription | boolean |
None. |
|
| ShopId | globally unique identifier |
None. |
|
| IsFree | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"currency": "sample string 1",
"personId": "008e0a1a-9424-452b-9734-e845bc56d832",
"orderLines": [
{
"count": 1,
"campaignId": "dd576030-9a11-49e2-b0d3-51d691f51c01",
"productId": "4d1f6bb8-ca17-4cd6-9718-a2993fd6e272"
},
{
"count": 1,
"campaignId": "dd576030-9a11-49e2-b0d3-51d691f51c01",
"productId": "4d1f6bb8-ca17-4cd6-9718-a2993fd6e272"
}
],
"deliveryMethod": "sample string 2",
"paymentMethod": "sample string 3",
"isSubscription": true,
"shopId": "60771b9f-8fb5-4fc3-a87d-c1d88dd96d85",
"isFree": true
}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.