GET api/Collaboration/FetchCommentThread?geometryId={geometryId}

Getting the comments of the thread

Request Information

URI Parameters

NameDescriptionTypeAdditional information
geometryId

Thread ID

integer

Required

Body Parameters

None.

Response Information

Resource Description

Result containing the comments

ObjResultOfComment[]
NameDescriptionTypeAdditional information
Data

Collection of Comment

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": [
    {
      "id": 1,
      "replyToId": 2,
      "geometryId": 3,
      "text": "sample string 4",
      "user": "sample string 5",
      "userGuid": "8974b05f-96bc-4ae2-a74c-8509cb0c7033",
      "time": "2024-04-23T16:27:01.4232508+02:00",
      "lastEditTime": "2024-04-23T16:27:01.4232508+02:00"
    },
    {
      "id": 1,
      "replyToId": 2,
      "geometryId": 3,
      "text": "sample string 4",
      "user": "sample string 5",
      "userGuid": "8974b05f-96bc-4ae2-a74c-8509cb0c7033",
      "time": "2024-04-23T16:27:01.4232508+02:00",
      "lastEditTime": "2024-04-23T16:27:01.4232508+02:00"
    }
  ],
  "error": "sample string 1",
  "success": true,
  "errorCode": 3
}