Update Ticket Comment
PUT/api/ticket-comments/{id}
Headers
| Field | Type | Description |
|---|---|---|
| authtoken | String | Authentication token, generated from admin area |
Parameters
| Field | Type | Description |
|---|---|---|
| id | Number | Ticket comment unique ID |
| description | string | optional Optional Comment content to update |
curl -X PUT "https://yoursite.com/api/ticket-comments/123" \
-H "authtoken: YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{ "field": "value" }' Success-Response:
HTTP/1.1 200 OK
{
"status": 200,
"messages": {"success": "Comment update success"}
}