Ticket comments API
A ticket comment is a comment made by a user on a specific ticket.
This endpoint has the following methods:
GET /ticket_comments: Gets a list of ticket comments and their associated information.GET /ticket_comments/{id}: Gets a ticket comment and its associated information by comment ID.
Parameters
Name | Type | Description |
|---|---|---|
| double | Unique identifier for a ticket comment. |
| double | Unique identifier assigned to a user alias. |
| double | Multiple user_alias_ids in comma separated list. |
| double | Unique identifier for a ticket. |
| string | Ticket comment. |
| double | Total number of words in comment. |
| string | How robust the comment is, indicated robust, regular, trivial. |
| string | Date and time a ticket comment was created. |
| string | Date and time a ticket comment was updated. |
Example response
{
"id": 156352272,
"body": "Great changes. Let’s push them.",
"user_alias_id": 9518490,
"ticket_id": 102557134,
"word_count": 3,
"comment_robustness": "trivial",
"created_at": "2023-12-22T12:59:01.680000",
"updated_at": "2023-12-22T12:59:01.680000"
}
