Zoom · Schema

RegistrantCreateRequest

ChatCollaborationCommunicationsMeetingsVideo ConferencingVideosWebinars

Properties

Name Type Description
email string Registrant email address.
first_name string Registrant first name.
last_name string Registrant last name.
address string Registrant address.
city string Registrant city.
state string Registrant state or province.
zip string Registrant zip or postal code.
country string Registrant two-letter country code.
phone string Registrant phone number.
comments string Registrant questions and comments.
industry string Registrant industry.
job_title string Registrant job title.
org string Registrant organization.
no_of_employees string Number of employees.
purchasing_time_frame string Purchasing time frame.
role_in_purchase_process string Role in purchase process.
language string Registrant language preference.
custom_questions array Custom question responses.
auto_approve boolean Auto-approve this registrant.
View JSON Schema on GitHub

JSON Schema

zoom-meeting-registrant-create-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "RegistrantCreateRequest",
  "type": "object",
  "properties": {
    "email": {
      "type": "string",
      "description": "Registrant email address."
    },
    "first_name": {
      "type": "string",
      "description": "Registrant first name."
    },
    "last_name": {
      "type": "string",
      "description": "Registrant last name."
    },
    "address": {
      "type": "string",
      "description": "Registrant address."
    },
    "city": {
      "type": "string",
      "description": "Registrant city."
    },
    "state": {
      "type": "string",
      "description": "Registrant state or province."
    },
    "zip": {
      "type": "string",
      "description": "Registrant zip or postal code."
    },
    "country": {
      "type": "string",
      "description": "Registrant two-letter country code."
    },
    "phone": {
      "type": "string",
      "description": "Registrant phone number."
    },
    "comments": {
      "type": "string",
      "description": "Registrant questions and comments."
    },
    "industry": {
      "type": "string",
      "description": "Registrant industry."
    },
    "job_title": {
      "type": "string",
      "description": "Registrant job title."
    },
    "org": {
      "type": "string",
      "description": "Registrant organization."
    },
    "no_of_employees": {
      "type": "string",
      "description": "Number of employees."
    },
    "purchasing_time_frame": {
      "type": "string",
      "description": "Purchasing time frame."
    },
    "role_in_purchase_process": {
      "type": "string",
      "description": "Role in purchase process."
    },
    "language": {
      "type": "string",
      "description": "Registrant language preference."
    },
    "custom_questions": {
      "type": "array",
      "description": "Custom question responses."
    },
    "auto_approve": {
      "type": "boolean",
      "description": "Auto-approve this registrant."
    }
  }
}