list_views
Retrieve and manage Zendesk views by specifying pagination parameters, enabling efficient organization and access to ticket views.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | Page number for pagination | |
per_page | No | Number of views 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 views per page (max 100)",
"type": "number"
}
},
"type": "object"
}