Comments
Queryable, Introduced in version 2.18
GET https://localhost:8001/sv/001.1/api/v1/Common/Comments
Represents a comment, containing both raw and HTML formatted text.
GUID
FA8BCB02-98C2-49E5-B03C-07B6FAD90786
Properties
Name | Type | Summary | Introduced in |
---|---|---|---|
Id | Int64 | The business key identifier of the comment. |
|
Text | String | The comment text with HTML formatting. |
|
RawText | String | The comment text without HTML formatting. In MONITOR this is used exclusively for indexing purposes and is not shown anywhere in the system. |
|
HasFileLinks | Boolean | Specifies if the comment has files linked to it. |
|
FileLinks | FileLink[] | A collection of all file links that belong to the comment.
|
Example
{
"Id": 0,
"Text": null,
"RawText": null,
"HasFileLinks": false,
"FileLinks": null
}