GET api/Collaboration/FetchCommentThread?geometryId={geometryId}
Getting the comments of the thread
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| geometryId |
Thread ID |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Result containing the comments
ObjResultOfComment[]| Name | Description | Type | Additional 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": "922e0a09-4c3e-49e9-8c47-5a87339e6c03",
"time": "2025-11-29T14:24:16.4090329+01:00",
"lastEditTime": "2025-11-29T14:24:16.4090329+01:00"
},
{
"id": 1,
"replyToId": 2,
"geometryId": 3,
"text": "sample string 4",
"user": "sample string 5",
"userGuid": "922e0a09-4c3e-49e9-8c47-5a87339e6c03",
"time": "2025-11-29T14:24:16.4090329+01:00",
"lastEditTime": "2025-11-29T14:24:16.4090329+01:00"
}
],
"error": "sample string 1",
"success": true,
"errorCode": 3
}