Zoom API MCP Server

list_contacts

Retrieve and manage Zoom contacts by status (active, inactive, pending) with pagination support, enabling organized user interaction through structured API endpoints.

Input Schema

NameRequiredDescriptionDefault
next_page_tokenNoNext page token
page_sizeNoNumber of records returned
statusNoContact status

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" }, "status": { "description": "Contact status", "enum": [ "active", "inactive", "pending" ], "type": "string" } }, "type": "object" }
ID: h6x0sr1f0c