POST api/request/addrequestcomment
Request Information
URI Parameters
None.
Body Parameters
RequestCommentInput| Name | Description | Type | Additional information |
|---|---|---|---|
| Comment | string |
None. |
|
| CommentBy | integer |
None. |
|
| CommentByName | string |
None. |
|
| RequestID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Comment": "sample string 1",
"CommentBy": 2,
"CommentByName": "sample string 3",
"RequestID": 4
}
application/xml, text/xml
Sample:
<RequestController.RequestCommentInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FEAWebServices.Controllers"> <Comment>sample string 1</Comment> <CommentBy>2</CommentBy> <CommentByName>sample string 3</CommentByName> <RequestID>4</RequestID> </RequestController.RequestCommentInput>
multipart/form-data
Sample:
<RequestController.RequestCommentInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FEAWebServices.Controllers"><Comment>sample string 1</Comment><CommentBy>2</CommentBy><CommentByName>sample string 3</CommentByName><RequestID>4</RequestID></RequestController.RequestCommentInput>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
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. |