POST v1/Orders/{orderId}/OrderComments
Adds the specified order identifier.
Request Information
Requires Authorization!
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| orderId |
The order identifier. |
integer |
Required. |
Body Parameters
The order comment.
OrderCommentChanges| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Gets or sets the identifier. |
integer |
Must be 0 |
| OrderId |
Gets or sets the order identifier. |
integer |
None. |
| Comment |
Gets or sets the comment. |
string |
Required Max length: 2147483647 |
| EmployeeId |
Gets or sets the employee identifier. |
integer |
None. |
| EmployeeName |
Gets or sets the name of the employee. |
string |
None. |
| TimeStamp |
Gets or sets the time stamp. |
date |
None. |
| OfferId |
Gets or sets the offer identifier. |
integer |
None. |
| CommentType |
Gets or sets the type of the comment. |
integer |
Required |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"OrderId": 1,
"Comment": "sample string 2",
"EmployeeId": 1,
"EmployeeName": "sample string 3",
"TimeStamp": "2026-04-03T18:25:30.5446939+02:00",
"OfferId": 1,
"CommentType": 5
}
application/xml, text/xml
Sample:
<OrderCommentChanges xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Id>1</Id> <OrderId>1</OrderId> <Comment>sample string 2</Comment> <EmployeeId>1</EmployeeId> <EmployeeName>sample string 3</EmployeeName> <TimeStamp>2026-04-03T18:25:30.5446939+02:00</TimeStamp> <OfferId>1</OfferId> <CommentType>5</CommentType> </OrderCommentChanges>
Response Information
Response Codes
- OK (200)
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. |