Add a Comment

post/commentmanager.add

Adds a comment to the specified object.

Securitybasic or X-PriceFx-jwt
Request
Request Body schema: application/json
object

`typedId of the object to which you want to add a comment.

parentObjectIdentifier
string
relatedObjectIdentifier
Array of strings

set of lineIds

body
string

The text content of the comment.

Responses
200

OK

Response Schema: application/json
object
node
string
Array of objects (CommentThread)
Array
typedId
string
Array of objects (Comment)
createdBy
integer
lastUpdateDate
string <date-time>
version
integer
relatedObjects
Array of strings
resolved
boolean
createDate
string <date-time>
lastUpdateBy
integer
status
integer
Request samples
application/json
{
  • "data": {
    • "parentObjectIdentifier": "string",
    • "relatedObjectIdentifier": [
      • "string"
      ],
    • "body": "string"
    }
}
Response samples
application/json
{
  • "response": {
    • "node": "string",
    • "data": [
      • {
        • "typedId": "string",
        • "comments": [
          ],
        • "createdBy": 0,
        • "lastUpdateDate": "2019-08-24T14:15:22Z",
        • "version": 0,
        • "relatedObjects": [
          ],
        • "resolved": true,
        • "createDate": "2019-08-24T14:15:22Z",
        • "lastUpdateBy": 0
        }
      ],
    • "status": 0
    }
}