List all Ticket Comments
GET/api/ticket-comments
Headers
| Field | Type | Description |
|---|---|---|
| authtoken | String | Authentication token, generated from admin area |
Parameters
| Field | Type | Description |
|---|---|---|
| ticket_id | Number | optional Optional filter by ticket ID |
curl -X GET "https://yoursite.com/api/ticket-comments" \
-H "authtoken: YOUR_API_TOKEN" Success-Response:
[
{
"id": "1",
"ticket_id": "1",
"description": "Comment text",
"created_by": "1"
}
]