List View Items
gorgias_list_view_itemsList tickets from a Gorgias view by ID with cursor pagination, sorting, and exclusion options to retrieve the desired set.
Instructions
GET /api/views/{view_id}/items — List the tickets belonging to a view with cursor-based pagination.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of items to return per page (default: 30, max: 100) | |
| cursor | No | Pagination cursor indicating current position in the list. Omit for the first page. | |
| view_id | Yes | The ID of the view to list items from | |
| order_by | No | Attribute used to order view items. Overrides the view's default ordering if specified. | |
| direction | No | Pagination direction: 'next' returns items after the cursor, 'prev' returns items before | |
| ignored_item | No | ID of a ticket to exclude from results (useful when items shift between pages due to real-time updates) |