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": "1fe46408-a6d2-47f1-9de7-8d8dbe81dd27",
"orderLines": [
{
"count": 1,
"campaignId": "731376d2-32e0-4636-9e27-e1cfbcefdb4d",
"productId": "c54e2f06-fd38-4888-b611-686be40d280c"
},
{
"count": 1,
"campaignId": "731376d2-32e0-4636-9e27-e1cfbcefdb4d",
"productId": "c54e2f06-fd38-4888-b611-686be40d280c"
}
],
"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.