POST associations({associationId})/status({statusUpdateId})/comments
Method to post a new comment
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
associationId | Association that the comment exists on |
Define this parameter in the request URI. |
statusUpdateId | Status update id to look at |
Define this parameter in the request URI. |
comment | Comment to create |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{ "Id": 1, "StatusUpdateId": 2, "CommentByRepresentative": 3, "CommentDate": "2024-11-24T01:13:49.1258696-06:00", "CommentText": "sample string 5" }
application/xml, text/xml
Sample:
<StatusUpdateCommentResource xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MicroNet.WebAPI.Classes.Resources"> <CommentByRepresentative>3</CommentByRepresentative> <CommentDate>2024-11-24T01:13:49.1258696-06:00</CommentDate> <CommentText>sample string 5</CommentText> <Id>1</Id> <StatusUpdateId>2</StatusUpdateId> </StatusUpdateCommentResource>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Posted comment
Response body formats
application/json, text/json
Sample:
Sample not available.