PUT v1/Orders/{orderId}/FulfilmentStatus
Update the Fulfilment Order status.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| orderId |
The id of the Order. |
integer |
Required. |
Body Parameters
The new values for the Fulfilment Order status.
OrderStatusChangeForOrder| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderStatusId |
The Order Status Id |
integer |
None. |
| ActionDate |
Gets or sets the action date. |
date |
None. |
| Comment |
Gets or sets the comment. |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"OrderStatusId": 1,
"ActionDate": "2026-01-11T16:15:48.8727316+01:00",
"Comment": "sample string 2"
}
application/xml, text/xml
Sample:
<OrderStatusChangeForOrder xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <OrderStatusId>1</OrderStatusId> <ActionDate>2026-01-11T16:15:48.8727316+01:00</ActionDate> <Comment>sample string 2</Comment> </OrderStatusChangeForOrder>
Response Information
Resource Description
The HttpResponseMessage object.
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |