Ticket Type Attributes
Update an existing attribute for a ticket type
You can update an existing attribute for a ticket type.
put/ticket_types/{ticket_type_id}/attributes/{attribute_id}
Path parameters
ticket_type_idstring required
The unique identifier for the ticket type which is given by Intercom.
attribute_idstring required
The unique identifier for the ticket type attribute which is given by Intercom.
Headers
Intercom-Version'1.0' | '1.1' | '1.2' | '1.3' | '1.4' | '2.0' | '2.1' | '2.2' | '2.3' | '2.4' | '2.5' | '2.6' | '2.7' | '2.8' | '2.9' | '2.10' | '2.11' | '2.12' | '2.13' | '2.14'
Intercom API version.</br>By default, it's equal to the version set in the app package.
Example:2.14
Request body
Example request
{
"name": "Bug Priority",
"description": "Priority level of the bug",
"visible_on_create": true,
"visible_to_contacts": true,
"list_items": "Low Priority,Medium Priority,High Priority"
}Response
Ticket Type Attribute updated
Example response
{
"type": "ticket_type_attribute",
"id": "1",
"workspace_id": "ecahpwf5",
"name": "Title",
"description": "Bug title.",
"data_type": "string",
"order": 1,
"default": true,
"ticket_type_id": 42
}