Webex · Schema
UpdateUserSessionType
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| siteUrl | string | Site URL for the session type. |
| personId | string | A unique identifier for the user. |
| string | The email of the user. | |
| sessionTypeIds | array | An array of the session type ID. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UpdateUserSessionType",
"title": "UpdateUserSessionType",
"type": "object",
"required": [
"siteUrl",
"sessionTypeIds"
],
"properties": {
"siteUrl": {
"type": "string",
"example": "example.webex.com",
"description": "Site URL for the session type."
},
"personId": {
"type": "string",
"example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS8yNWJiZjgzMS01YmU5LTRjMjUtYjRiMC05YjU5MmM4YTA4NmI",
"description": "A unique identifier for the user."
},
"email": {
"type": "string",
"example": "[email protected]",
"description": "The email of the user."
},
"sessionTypeIds": {
"type": "array",
"items": {
"type": "string"
},
"example": [
"3",
"9"
],
"description": "An array of the session type ID."
}
}
}