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": "78a214d4-3b64-4b16-84ea-5585af096004",
"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>78a214d4-3b64-4b16-84ea-5585af096004</OrderId> </OrderExternalProductionIdChangeDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.