GET associations({associationId})/status({statusUpdateId})/comments
Method to get all comments for a status update
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. |
Response Information
Bunch of status update comments
Response body formats
application/json, text/json
Sample:
[ { "Id": 1, "StatusUpdateId": 2, "CommentByRepresentative": 3, "CommentDate": "2024-11-24T02:14:01.9749375-06:00", "CommentText": "sample string 5" }, { "Id": 1, "StatusUpdateId": 2, "CommentByRepresentative": 3, "CommentDate": "2024-11-24T02:14:01.9749375-06:00", "CommentText": "sample string 5" }, { "Id": 1, "StatusUpdateId": 2, "CommentByRepresentative": 3, "CommentDate": "2024-11-24T02:14:01.9749375-06:00", "CommentText": "sample string 5" } ]
application/xml, text/xml
Sample:
<ArrayOfStatusUpdateCommentResource xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MicroNet.WebAPI.Classes.Resources"> <StatusUpdateCommentResource> <CommentByRepresentative>3</CommentByRepresentative> <CommentDate>2024-11-24T02:14:01.9749375-06:00</CommentDate> <CommentText>sample string 5</CommentText> <Id>1</Id> <StatusUpdateId>2</StatusUpdateId> </StatusUpdateCommentResource> <StatusUpdateCommentResource> <CommentByRepresentative>3</CommentByRepresentative> <CommentDate>2024-11-24T02:14:01.9749375-06:00</CommentDate> <CommentText>sample string 5</CommentText> <Id>1</Id> <StatusUpdateId>2</StatusUpdateId> </StatusUpdateCommentResource> <StatusUpdateCommentResource> <CommentByRepresentative>3</CommentByRepresentative> <CommentDate>2024-11-24T02:14:01.9749375-06:00</CommentDate> <CommentText>sample string 5</CommentText> <Id>1</Id> <StatusUpdateId>2</StatusUpdateId> </StatusUpdateCommentResource> </ArrayOfStatusUpdateCommentResource>
text/csv
Sample:
Id,StatusUpdateId,CommentByRepresentative,CommentDate,CommentText "1","2","3","11/24/2024 2:14:01 AM","sample string 5" "1","2","3","11/24/2024 2:14:01 AM","sample string 5" "1","2","3","11/24/2024 2:14:01 AM","sample string 5"