list_phone_users
Retrieve a list of Zoom phone users by specifying site ID, page size, and next page token for efficient user management and integration with Zoom API MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
next_page_token | No | Next page token | |
page_size | No | Number of records returned | |
site_id | No | Site ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"next_page_token": {
"description": "Next page token",
"type": "string"
},
"page_size": {
"description": "Number of records returned",
"maximum": 300,
"minimum": 1,
"type": "number"
},
"site_id": {
"description": "Site ID",
"type": "string"
}
},
"type": "object"
}