POST api/SupportTicketComment
Request Information
URI Parameters
None.
Body Parameters
SupportTicketCommentName | Description | Type | Additional information |
---|---|---|---|
Id | integer |
None. |
|
SupportTicketId | integer |
None. |
|
Comment | string |
None. |
|
IsCustomerRead | boolean |
None. |
|
IsAdminRead | boolean |
None. |
|
CreatedDate | date |
None. |
|
CreatedBy | integer |
None. |
|
LastModifiedDate | date |
None. |
|
LastModifiedBy | integer |
None. |
|
CommentUserName | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "Id": 1, "SupportTicketId": 2, "Comment": "sample string 3", "IsCustomerRead": true, "IsAdminRead": true, "CreatedDate": "2025-08-29T20:29:36.5844721+00:00", "CreatedBy": 7, "LastModifiedDate": "2025-08-29T20:29:36.5844721+00:00", "LastModifiedBy": 1, "CommentUserName": "sample string 9" }
application/xml, text/xml
Sample:
<SupportTicketComment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MSCWebAPI.Domain"> <Comment>sample string 3</Comment> <CommentUserName>sample string 9</CommentUserName> <CreatedBy>7</CreatedBy> <CreatedDate>2025-08-29T20:29:36.5844721+00:00</CreatedDate> <Id>1</Id> <IsAdminRead>true</IsAdminRead> <IsCustomerRead>true</IsCustomerRead> <LastModifiedBy>1</LastModifiedBy> <LastModifiedDate>2025-08-29T20:29:36.5844721+00:00</LastModifiedDate> <SupportTicketId>2</SupportTicketId> </SupportTicketComment>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.