Properties
| Name | Type | Description |
|---|---|---|
| string | Email address for cohost. This attribute can be modified with the [Update Personal Meeting Room Options](/docs/api/v1/meeting-preferences/update-personal-meeting-room-options) API. | |
| displayName | string | Display name for cohost. This attribute can be modified with the [Update Personal Meeting Room Options](/docs/api/v1/meeting-preferences/update-personal-meeting-room-options) API. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CoHostObject",
"title": "CoHostObject",
"type": "object",
"required": [
"email",
"displayName"
],
"properties": {
"email": {
"type": "string",
"example": "[email protected]",
"description": "Email address for cohost. This attribute can be modified with the [Update Personal Meeting Room Options](/docs/api/v1/meeting-preferences/update-personal-meeting-room-options) API."
},
"displayName": {
"type": "string",
"example": "John Andersen",
"description": "Display name for cohost. This attribute can be modified with the [Update Personal Meeting Room Options](/docs/api/v1/meeting-preferences/update-personal-meeting-room-options) API."
}
}
}