Zoom API MCP Server

create_sub_account

Generate a sub-account under a main Zoom account by specifying owner details, company information, and contact data for streamlined account management.

Input Schema

NameRequiredDescriptionDefault
addressNoAddress
cityNoCity
company_nameYesCompany name
countryYesCountry
emailYesEmail address of the account owner
first_nameYesFirst name of the account owner
last_nameYesLast name of the account owner
passwordYesPassword
phone_countryNoCountry for phone
phone_numberNoPhone number
stateNoState/Province
zipNoZIP/Postal Code

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "address": { "description": "Address", "type": "string" }, "city": { "description": "City", "type": "string" }, "company_name": { "description": "Company name", "type": "string" }, "country": { "description": "Country", "type": "string" }, "email": { "description": "Email address of the account owner", "format": "email", "type": "string" }, "first_name": { "description": "First name of the account owner", "type": "string" }, "last_name": { "description": "Last name of the account owner", "type": "string" }, "password": { "description": "Password", "type": "string" }, "phone_country": { "description": "Country for phone", "type": "string" }, "phone_number": { "description": "Phone number", "type": "string" }, "state": { "description": "State/Province", "type": "string" }, "zip": { "description": "ZIP/Postal Code", "type": "string" } }, "required": [ "first_name", "last_name", "email", "password", "company_name", "country" ], "type": "object" }
ID: h6x0sr1f0c