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": [ "a37a1fe9-9555-4bef-9801-303db2a7e311", "2439c88e-2f20-4715-9c5c-e6ea014c6931" ] }
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-04-02T01:21:45.8480389+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 |