POST api/Collaboration/EditComment
Editing a comment
Request Information
URI Parameters
None.
Body Parameters
Comment editing parameters
EditCommentParamsName | 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": [ "d14ebea0-84f0-4f81-9d55-84e3c47bafa2", "a0e4013f-ea08-4076-907e-5da8f763aa6e" ] }
Response Information
Resource Description
Result containing the comment edit timestamp
ObjResultOfDateTimeName | 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-06-27T14:23:38.5561288+02: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 |