create_sub_account
Create sub-accounts for Zoom users by providing essential details such as name, email, password, company, and country. Streamlines account management within the Zoom API MCP Server environment.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | No | Address | |
city | No | City | |
company_name | Yes | Company name | |
country | Yes | Country | |
Yes | Email address of the account owner | ||
first_name | Yes | First name of the account owner | |
last_name | Yes | Last name of the account owner | |
password | Yes | Password | |
phone_country | No | Country for phone | |
phone_number | No | Phone number | |
state | No | State/Province | |
zip | No | ZIP/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"
}