POST api/orders/confirm
Request Information
URI Parameters
None.
Body Parameters
ConfirmOrderRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Campaign | string |
None. |
|
| SupplierOrderId | string |
None. |
|
| Confirmed | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Campaign": "sample string 1",
"SupplierOrderId": "sample string 2",
"Confirmed": true
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ConfirmOrderResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Confirmed | boolean |
None. |
|
| Status | integer |
None. |
|
| Message | string |
None. |
|
| CodeError | string |
None. |
|
| Exception | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Confirmed": true,
"Status": 2,
"Message": "sample string 3",
"CodeError": "sample string 4",
"Exception": "sample string 5"
}