The Zendesk plugin syncs data locally. UseDocumentation Index
Fetch the complete documentation index at: https://docs.corsair.dev/llms.txt
Use this file to discover all available pages before exploring further.
corsair.zendesk.db.<entity>.search({ data, limit?, offset? }) with the filters listed per entity.
New to Corsair? See database operations, data synchronization, and multi-tenancy.
Comments
Path:zendesk.db.comments.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
id | number | equals, gt, gte, lt, lte, in |
ticketId | number | equals, gt, gte, lt, lte, in |
body | string | equals, contains, startsWith, endsWith, in |
authorId | number | equals, gt, gte, lt, lte, in |
public | boolean | equals |
createdAt | date | equals, before, after, between |
.search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.
Tickets
Path:zendesk.db.tickets.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
id | number | equals, gt, gte, lt, lte, in |
subject | string | equals, contains, startsWith, endsWith, in |
description | string | equals, contains, startsWith, endsWith, in |
status | string | equals, contains, startsWith, endsWith, in |
priority | string | equals, contains, startsWith, endsWith, in |
requesterId | number | equals, gt, gte, lt, lte, in |
assigneeId | number | equals, gt, gte, lt, lte, in |
organizationId | number | equals, gt, gte, lt, lte, in |
groupId | number | equals, gt, gte, lt, lte, in |
createdAt | date | equals, before, after, between |
updatedAt | date | equals, before, after, between |
.search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.
Users
Path:zendesk.db.users.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
id | number | equals, gt, gte, lt, lte, in |
name | string | equals, contains, startsWith, endsWith, in |
email | string | equals, contains, startsWith, endsWith, in |
role | string | equals, contains, startsWith, endsWith, in |
active | boolean | equals |
timeZone | string | equals, contains, startsWith, endsWith, in |
locale | string | equals, contains, startsWith, endsWith, in |
createdAt | date | equals, before, after, between |
updatedAt | date | equals, before, after, between |
.search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.