search_company_contacts
Search and retrieve company contacts using a query string and pagination options, enabling precise access to Zoom API resources via the MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
next_page_token | No | Next page token | |
page_size | No | Number of records returned | |
query_string | Yes | Search query string |
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"
},
"query_string": {
"description": "Search query string",
"type": "string"
}
},
"required": [
"query_string"
],
"type": "object"
}