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": "a6c8d8e2-497f-45df-8101-05ba9cabe9a1",
"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>a6c8d8e2-497f-45df-8101-05ba9cabe9a1</OrderId> </OrderExternalProductionIdChangeDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.