Reply To a Comment

post/commentmanager.reply

Posts a reply to the comment specified by the commentThreadTypedId in the request body.

Securitybasic or X-PriceFx-jwt
Request
Request Body schema: application/json
object
commentThreadTypedId
string
body
string
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": {
    • "commentThreadTypedId": "string",
    • "body": "string"
    }
}
Response samples
application/json
{
  • "response": {
    • "node": "node",
    • "data": [
      • {
        • "version": 0,
        • "typedId": "12.CMTRD",
        • "relatedObjects": [
          ],
        • "comments": [
          ],
        • "resolved": false,
        • "createDate": "2024-10-15T12:42:44",
        • "createdBy": 2147490698,
        • "lastUpdateDate": "2024-10-15T12:42:44",
        • "lastUpdateBy": 2147490698
        }
      ],
    • "status": 0
    }
}