GET api/Collaboration/GetCommentSummary

Getting notifications for the current user

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Result containing notifications

ObjResultOfCommentSummaryOutcome[]
NameDescriptionTypeAdditional information
Data

Collection of CommentSummaryOutcome

None.

Error

Error description

string

None.

Success

Flag of successful operation

boolean

None.

ErrorCode

Error code

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "data": [
    {
      "mediaItemId": 1,
      "revisionId": 2,
      "fileName": "sample string 3",
      "mediaItemHashCode": 4,
      "lastComment": {
        "id": 1,
        "replyToId": 2,
        "geometryId": 3,
        "text": "sample string 4",
        "user": "sample string 5",
        "userGuid": "192e7bb1-cefa-4ba8-a186-91def956c467",
        "time": "2023-03-26T16:57:33.3898043+02:00",
        "lastEditTime": "2023-03-26T16:57:33.3898043+02:00"
      },
      "commentReaded": true
    },
    {
      "mediaItemId": 1,
      "revisionId": 2,
      "fileName": "sample string 3",
      "mediaItemHashCode": 4,
      "lastComment": {
        "id": 1,
        "replyToId": 2,
        "geometryId": 3,
        "text": "sample string 4",
        "user": "sample string 5",
        "userGuid": "192e7bb1-cefa-4ba8-a186-91def956c467",
        "time": "2023-03-26T16:57:33.3898043+02:00",
        "lastEditTime": "2023-03-26T16:57:33.3898043+02:00"
      },
      "commentReaded": true
    }
  ],
  "error": "sample string 1",
  "success": true,
  "errorCode": 3
}