List tickets
Tickets
List tickets
GET /tickets — paginated list with optional property filter
GET
List tickets
Endpoint
/ticketsAuthentication: Bearer JWT
Query parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
properties | string | (defaults below) | Comma-separated list of additional property names to include alongside the default set for this object type (e.g. ?properties=phone). Names already in the default set are not duplicated. Invalid or disallowed property names return 400. |
archived | boolean | false | Set to true to include archived objects |
limit | integer | 10 | Maximum number of results (10–100) |
offset | integer | 0 | Pagination offset |
Default response fields
Whenproperties is omitted, each item in data includes:
| Property | Description |
|---|---|
id | Internal object ID |
ticket_name | Custom or system field (flat on the object) |
pipeline | Custom or system field (flat on the object) |
ticket_owner | Assigned owner email |
external_id | External identifier (nullable) |
archived | false when active; ISO timestamp when archived |
created_at and updated_at are always included in every response (ISO 8601 UTC), even when not listed above. When an object is archived, archived_by is also included automatically.Response
200 — Paginated listErrors
| Status | When |
|---|---|
400 | Invalid properties query (empty list or invalid property name) |
401 | Missing or invalid account context in JWT |
500 | Internal server error |
Authorizations
Bearer JWT with valid account context.
Query Parameters
Comma-separated additional property names to include alongside defaults (e.g. phone). Invalid or disallowed names return 400.
Include archived objects when true
Maximum results (default 10, max 100)
Required range:
1 <= x <= 100Pagination offset (default 0)
Required range:
x >= 0