GET associations({associationId})/status({statusUpdateId})/comments

Method to get all comments for a status update

Request Information

Parameters

NameDescriptionAdditional 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-03-28T13:54:49.2022308-05:00",
    "CommentText": "sample string 5"
  },
  {
    "Id": 1,
    "StatusUpdateId": 2,
    "CommentByRepresentative": 3,
    "CommentDate": "2024-03-28T13:54:49.2022308-05:00",
    "CommentText": "sample string 5"
  },
  {
    "Id": 1,
    "StatusUpdateId": 2,
    "CommentByRepresentative": 3,
    "CommentDate": "2024-03-28T13:54:49.2022308-05: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-03-28T13:54:49.2022308-05:00</CommentDate>
    <CommentText>sample string 5</CommentText>
    <Id>1</Id>
    <StatusUpdateId>2</StatusUpdateId>
  </StatusUpdateCommentResource>
  <StatusUpdateCommentResource>
    <CommentByRepresentative>3</CommentByRepresentative>
    <CommentDate>2024-03-28T13:54:49.2022308-05:00</CommentDate>
    <CommentText>sample string 5</CommentText>
    <Id>1</Id>
    <StatusUpdateId>2</StatusUpdateId>
  </StatusUpdateCommentResource>
  <StatusUpdateCommentResource>
    <CommentByRepresentative>3</CommentByRepresentative>
    <CommentDate>2024-03-28T13:54:49.2022308-05: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","3/28/2024 1:54:49 PM","sample string 5"
"1","2","3","3/28/2024 1:54:49 PM","sample string 5"
"1","2","3","3/28/2024 1:54:49 PM","sample string 5"