POST api/Collaboration/EditComment
Editing a comment
Request Information
URI Parameters
None.
Body Parameters
Comment editing parameters
EditCommentParams| Name | Description | Type | Additional information |
|---|---|---|---|
| CommentId |
Comment ID |
integer |
None. |
| Text |
Comment |
string |
None. |
| SubscriberGuids |
IDs of users who need to be notified about the comment |
Collection of globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"commentId": 1,
"text": "sample string 2",
"subscriberGuids": [
"ce8a0dd9-c729-46a1-aba8-34f8b786a0d8",
"e2677b34-3274-4826-ba0f-da4e986ecd9a"
]
}
Response Information
Resource Description
Result containing the comment edit timestamp
ObjResultOfDateTime| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | date |
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": "2025-11-17T18:06:38.8587271+01:00",
"error": "sample string 2",
"success": true,
"errorCode": 4
}
Parameter Information
parameters
Comment editing parameters
| Property | Description |
|---|---|
| CommentId (Int64) |
Comment ID |
| Text (String) |
Comment |
| SubscriberGuids (Guid[]) |
IDs of users who need to be notified about the comment |