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. |
Request Formats
application/json, text/json
Sample:
{
"currency": "sample string 1",
"personId": "efc30d41-2066-4445-a207-a6449adb07c2",
"orderLines": [
{
"count": 1,
"campaignId": "158d8e42-44f0-4bfa-ad2f-6f3ecb35780b",
"productId": "d98c3255-841f-400b-9a85-308865494287"
},
{
"count": 1,
"campaignId": "158d8e42-44f0-4bfa-ad2f-6f3ecb35780b",
"productId": "d98c3255-841f-400b-9a85-308865494287"
}
],
"deliveryMethod": "sample string 2",
"paymentMethod": "sample string 3",
"isSubscription": true
}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.