Ticket Comments Fields
To fetch metadata of Ticket Comment object send a GET request to:
https://api.assembla.com/v1/meta/ticket_comments.(json|xml)
example. request json with curl utility:
curl -H "Authorization: bearer _token" https://api.assembla.com/v1/meta/ticket_comments.json
example. request xml with curl utility:
curl -H "Authorization: bearer _token" https://api.assembla.com/v1/meta/ticket_comments.xml
table below is the list of fields contained in the response, this list will be properly formatted to json or xml as requested.
Fields
| Param | Data type | Access | Description |
|---|---|---|---|
| id | integer | read | Component identifier |
| comment | text | read/write | Comment body |
| ticket_id | integer | read | Ticket id that comment is associated with |
| user_id | string | read/write | User id that posted the comment, can be set on ticket creation by users with all permissions in space. |
| created_on | datetime | read/write | Date and time when comment was created, can be set on ticket creation by users with all permissions in space. |
| updated_at | datetime | read | Date and time when a comment was updated |
| ticket_changes | text | read | A system comment generated when changes to ticket occurs |
Validations
No validations available