Properties
| Name | Type | Description |
|---|---|---|
| autoAcceptRequest | boolean | Whether or not meeting registration requests are accepted automatically. |
| requireFirstName | boolean | Whether or not a registrant's first name is required for meeting registration. This option must always be `true`. |
| requireLastName | boolean | Whether or not a registrant's last name is required for meeting registration. This option must always be `true`. |
| requireEmail | boolean | Whether or not a registrant's email is required for meeting registration. This option must always be `true`. |
| requireJobTitle | boolean | Whether or not a registrant's job title is shown or required for meeting registration. |
| requireCompanyName | boolean | Whether or not a registrant's company name is shown or required for meeting registration. |
| requireAddress1 | boolean | Whether or not a registrant's first address field is shown or required for meeting registration. |
| requireAddress2 | boolean | Whether or not a registrant's second address field is shown or required for meeting registration. |
| requireCity | boolean | Whether or not a registrant's city is shown or required for meeting registration. |
| requireState | boolean | Whether or not a registrant's state is shown or required for meeting registration. |
| requireZipCode | boolean | Whether or not a registrant's postal code is shown or required for meeting registration. |
| requireCountryRegion | boolean | Whether or not a registrant's country or region is shown or required for meeting registration. |
| requireWorkPhone | boolean | Whether or not a registrant's work phone number is shown or required for meeting registration. |
| requireFax | boolean | Whether or not a registrant's fax number is shown or required for meeting registration. |
| customizedQuestions | array | Customized questions for meeting registration. |
| rules | array | The approval rules for standard questions. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Registration",
"title": "Registration",
"type": "object",
"properties": {
"autoAcceptRequest": {
"type": "boolean",
"description": "Whether or not meeting registration requests are accepted automatically."
},
"requireFirstName": {
"type": "boolean",
"example": true,
"description": "Whether or not a registrant's first name is required for meeting registration. This option must always be `true`."
},
"requireLastName": {
"type": "boolean",
"example": true,
"description": "Whether or not a registrant's last name is required for meeting registration. This option must always be `true`."
},
"requireEmail": {
"type": "boolean",
"example": true,
"description": "Whether or not a registrant's email is required for meeting registration. This option must always be `true`."
},
"requireJobTitle": {
"type": "boolean",
"description": "Whether or not a registrant's job title is shown or required for meeting registration."
},
"requireCompanyName": {
"type": "boolean",
"description": "Whether or not a registrant's company name is shown or required for meeting registration."
},
"requireAddress1": {
"type": "boolean",
"description": "Whether or not a registrant's first address field is shown or required for meeting registration."
},
"requireAddress2": {
"type": "boolean",
"description": "Whether or not a registrant's second address field is shown or required for meeting registration."
},
"requireCity": {
"type": "boolean",
"description": "Whether or not a registrant's city is shown or required for meeting registration."
},
"requireState": {
"type": "boolean",
"description": "Whether or not a registrant's state is shown or required for meeting registration."
},
"requireZipCode": {
"type": "boolean",
"description": "Whether or not a registrant's postal code is shown or required for meeting registration."
},
"requireCountryRegion": {
"type": "boolean",
"description": "Whether or not a registrant's country or region is shown or required for meeting registration."
},
"requireWorkPhone": {
"type": "boolean",
"description": "Whether or not a registrant's work phone number is shown or required for meeting registration."
},
"requireFax": {
"type": "boolean",
"description": "Whether or not a registrant's fax number is shown or required for meeting registration."
},
"customizedQuestions": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CustomizedQuestionForGetMeeting"
},
"description": "Customized questions for meeting registration."
},
"rules": {
"type": "array",
"items": {
"$ref": "#/components/schemas/StandardRegistrationApproveRule"
},
"description": "The approval rules for standard questions."
}
}
}