{ "displayName": "High", "description": "This is a high priority ticket", "isDefault": true, "name": "High", "teamId": "123e4567-e89b-12d3-a456-426614174000"}
Field configurations determine how data is collected, validated, and displayed in tickets. Changes to field configurations may affect existing tickets.
# Type managementGET /v1/tickets/type/{id} # Get a ticket type by IDPATCH /v1/tickets/type/{id} # Update a custom ticket typeDELETE /v1/tickets/type/{id} # Delete a custom ticket type# Priority managementGET /v1/tickets/priority # Get all ticket prioritiesPOST /v1/tickets/priority # Create a new custom ticket priorityGET /v1/tickets/priority/{id} # Get a ticket priority by IDPATCH /v1/tickets/priority/{id} # Update a custom ticket priorityDELETE /v1/tickets/priority/{id} # Delete a custom ticket priority
All endpoints require authentication and appropriate permissions. System default fields cannot be deleted.
# Get all available tagsGET /v1/tickets/tags# Create a new tagPOST /v1/tickets/tagsContent-Type: application/json# Delete a tagDELETE /v1/tickets/tags/{id}