POST api/orders/externalProductionId
Sets the external production id of an order.
Request Information
URI Parameters
None.
Body Parameters
The model to set the external production id with.
OrderExternalProductionIdChangeDto| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderId | globally unique identifier |
None. |
|
| ExternalProductionId | string |
String length: inclusive between 0 and 100 |
Request Formats
application/json, text/json
Sample:
{
"OrderId": "9b30077a-f489-42b9-abd2-061168f55a24",
"ExternalProductionId": "sample string 2"
}
application/xml, text/xml
Sample:
<OrderExternalProductionIdChangeDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Pay.Models"> <ExternalProductionId>sample string 2</ExternalProductionId> <OrderId>9b30077a-f489-42b9-abd2-061168f55a24</OrderId> </OrderExternalProductionIdChangeDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.