POST api/orders/status
Sets the status of an order.
Request Information
URI Parameters
None.
Body Parameters
The model to set the status with.
OrderStatusChangeDto| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderId | globally unique identifier |
None. |
|
| ExternalProductionId | string |
String length: inclusive between 0 and 100 |
|
| Id | integer |
None. |
|
| Status | string |
None. |
|
| ChangeDateUtc | date |
None. |
|
| Description | string |
None. |
|
| UserId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"OrderId": "932b22b1-4896-47ce-979e-32360535d5cd",
"ExternalProductionId": "sample string 2",
"Id": 3,
"Status": "sample string 4",
"ChangeDateUtc": "2026-07-04T13:56:28.4418242+00:00",
"Description": "sample string 6",
"UserId": "c19097b5-df4e-4116-9a68-c0144e3155c0"
}
application/xml, text/xml
Sample:
<OrderStatusChangeDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Pay.Models"> <ChangeDateUtc>2026-07-04T13:56:28.4418242+00:00</ChangeDateUtc> <Description>sample string 6</Description> <Id>3</Id> <Status>sample string 4</Status> <UserId>c19097b5-df4e-4116-9a68-c0144e3155c0</UserId> <ExternalProductionId>sample string 2</ExternalProductionId> <OrderId>932b22b1-4896-47ce-979e-32360535d5cd</OrderId> </OrderStatusChangeDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.