list_triggers
Retrieve and manage Zendesk triggers by specifying page numbers and items per page, enabling efficient organization and automation of support workflows.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | Page number for pagination | |
per_page | No | Number of triggers per page (max 100) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"page": {
"description": "Page number for pagination",
"type": "number"
},
"per_page": {
"description": "Number of triggers per page (max 100)",
"type": "number"
}
},
"type": "object"
}