get_contact
Retrieve detailed contact information from Zoom using a specific contact ID. This tool integrates with the Zoom API MCP Server for validated and secure data access.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contact_id | Yes | The contact ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"contact_id": {
"description": "The contact ID",
"type": "string"
}
},
"required": [
"contact_id"
],
"type": "object"
}