Update Comment
PUT /tickets/:ticket_id/comments/:comment_id/
Example URL
https://system_domain/api/v2/tickets/123/comments/36982/
PATH Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
ticket_id | number | Yes | Technical ID of the ticket |
comment_id | number | Yes | ID of the comment to be updated |
Request Body Parameters (JSON)
| Parameter | Type | Required | Description |
|---|---|---|---|
text | string | Yes | Comment 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": []
}
}