list_chats
Retrieve and manage chat data from Zendesk Chat API. Use pagination parameters to fetch specific chat pages and control the number of chats per page, up to a maximum of 100.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | Page number for pagination | |
per_page | No | Number of chats 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 chats per page (max 100)",
"type": "number"
}
},
"type": "object"
}