Objects
List tickets
List tickets with cursor pagination and optional properties, associations, and search filters.
Overview
Use this endpoint to read tickets in pages. Default ticket properties include name, priority, pipeline, stage, and close_date. It requires public api oauth access token authentication and the crm.tickets.read scope.
/api/crm/objects/ticketscURL
GETcurl --request GET \ --url 'https://crm.notifyy.io/api/crm/objects/tickets?properties=name%2Cpriority%2Cpipeline%2Cstage%2Cclose_date&associations=contact%2Ccompany&search=support&limit=25' \ --header 'Authorization: Bearer nfy_public_api_access_token'Sample Request Body
Sample Response
{ "success": true, "message": "Tickets retrieved successfully", "data": { "tickets": [ { "id": 55, "properties": { "name": "Billing issue", "priority": "high", "pipeline": "support_pipeline", "stage": "open" }, "associations": { "contact": [ { "id": "456", "type": "ticket_to_contact" } ], "company": [ { "id": "789", "type": "ticket_to_company" } ] } } ], "pagination": { "nextCursor": "opaque-cursor", "hasMore": true } }}Status Codes
| Code | Description |
|---|---|
| 200 | Tickets were returned. |
Headers
Public API OAuth bearer token.
Example: Bearer nfy_public_api_access_token
| Object | Description |
|---|---|
Authorization string | RequiredPublic API OAuth bearer token. Example: Bearer nfy_public_api_access_token |
Query parameters
Comma-separated property internal names to return.
Example: name,priority,pipeline,stage,close_date
Comma-separated associated object types to include.
Example: contact,company
Search string forwarded to the CRM ticket query service.
Example: support
Opaque cursor returned by a previous list response.
Page size. Defaults to 50 and the maximum is 100.
Example: 25
| Object | Description |
|---|---|
properties string | OptionalComma-separated property internal names to return. Example: name,priority,pipeline,stage,close_date |
associations string | OptionalComma-separated associated object types to include. Example: contact,company |
search string | OptionalSearch string forwarded to the CRM ticket query service. Example: support |
cursor string | OptionalOpaque cursor returned by a previous list response. |
limit integer | OptionalPage size. Defaults to 50 and the maximum is 100. Example: 25 |
Response fields
List of matching tickets.
| Object | Description |
|---|---|
data.tickets object[] | List of matching tickets. |