Skip to main content

Update Comment

PUT /tickets/:ticket_id/comments/:comment_id/


Example URL

https://system_domain/api/v2/tickets/123/comments/36982/


PATH Parameters

ParameterTypeRequiredDescription
ticket_idnumberYesTechnical ID of the ticket
comment_idnumberYesID of the comment to be updated

Request Body Parameters (JSON)

ParameterTypeRequiredDescription
textstringYesComment text

Example Request Body (JSON)

{
"text": "Updated comment text"
}

Response example:

Response example
{
"data": {
"ticket_id": 1,
"id": 13768,
"user_id": 1,
"text": "Updated comment text",
"date_created": "08:48:56 21.11.2025",
"visible": "staff",
"files": []
}
}