UpdateComment
Command, Introduced in version 2.18
POST https://localhost:8001/sv/001.1/api/v1/Common/Commands/UpdateComment
Updates the contents of a comment.
Returns EntityCommandResponse
The root entity id of the response is the root entity id provided with the command.
The entity id of the response is the business key identifier of the comment that was updated. References Comments
Properties
Name | Type | Summary | Introduced in |
---|---|---|---|
CommentId | Int64 | The business key identifier of the comment to update. References Comments.
|
|
RootEntityId | Int64 | The business key identifier of the comment's parent. This value is passed through to the command response.
|
|
Text | StringInput | The text to set on the comment. |
|
RawText | StringInput | The raw text to set on the comment. In MONITOR this is exclusively used for indexing purposes and is not shown anywhere in the system. |
Example
{
"CommentId": 0,
"RootEntityId": 0,
"Text": null,
"RawText": null
}