/tickets to get a unified view of everything active in your workspace. The /history endpoint exposes the complete audit log — every status change, reassignment, comment, and system event — making it straightforward to satisfy compliance requirements or prepare for a post-incident review.
All endpoints require
Authorization: Bearer <token>.https://your-api-domain.com/api/v1/tickets
List all tickets
Returns a paginated list of all tickets in the workspace. Each record identifies its originating domain — incident, change, or problem — alongside the current status and assignee.GET /
number
default:"1"
Page number.
number
default:"20"
Items per page (max 100).
string
Filter by ticket type:
INCIDENT, CHANGE, or PROBLEM.string
Filter by current lifecycle status.
string
Unique ticket identifier.
string
Ticket domain:
INCIDENT, CHANGE, or PROBLEM.string
Short description of the ticket.
string
Severity:
LOW, MEDIUM, HIGH, or CRITICAL.string
Current lifecycle status.
string
Email of the assigned engineer.
string
ISO 8601 creation timestamp.
string
ISO 8601 timestamp of the most recent update.
Get ticket history
Returns the complete audit log for tickets in the workspace — every status change, comment, reassignment, priority update, and system-generated event — ordered chronologically. Scope the results to a single ticket using theticketId query parameter.
GET /history
string
Scope the history to a single ticket ID.
string
Start of the date range (ISO 8601).
string
End of the date range (ISO 8601).
number
default:"1"
Page number.
number
default:"20"
Items per page (max 100).
string
The ticket this event belongs to.
string
Event type. Common values:
STATUS_CHANGE, COMMENT_ADDED, ASSIGNED, PRIORITY_CHANGE, RESOLVED.string
Previous value, present on change events.
string
New value, present on change events.
string
Email of the user or system that triggered the event.
string
Event detail text, present on comment and note events.
string
ISO 8601 timestamp of the event.