get_chats
Retrieve a paginated list of WhatsApp chats using specified limit and offset parameters. Ideal for managing and organizing chat data efficiently within the WhatsApp Business API.
Instructions
Get a list of chats.
Parameters:
- limit: Maximum number of chats to return (default: 50)
- offset: Offset for pagination (default: 0)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
offset | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 50,
"title": "Limit",
"type": "integer"
},
"offset": {
"default": 0,
"title": "Offset",
"type": "integer"
}
},
"title": "get_chatsArguments",
"type": "object"
}