Cisco Webex · Schema
RoomMeetingInfo
CollaborationCommunicationsMeetingsMessagingTeamsVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| roomId | string | Unique identifier for the room. |
| meetingLink | string | The meeting link for the room. |
| sipAddress | string | The SIP address for the room. |
| meetingNumber | string | The meeting number for the room. |
| meetingId | string | The meeting ID for the room. |
| callInTollFreeNumber | string | Toll-free dial-in number. |
| callInTollNumber | string | Toll dial-in number. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RoomMeetingInfo",
"title": "RoomMeetingInfo",
"type": "object",
"properties": {
"roomId": {
"type": "string",
"description": "Unique identifier for the room."
},
"meetingLink": {
"type": "string",
"format": "uri",
"description": "The meeting link for the room."
},
"sipAddress": {
"type": "string",
"description": "The SIP address for the room."
},
"meetingNumber": {
"type": "string",
"description": "The meeting number for the room."
},
"meetingId": {
"type": "string",
"description": "The meeting ID for the room."
},
"callInTollFreeNumber": {
"type": "string",
"description": "Toll-free dial-in number."
},
"callInTollNumber": {
"type": "string",
"description": "Toll dial-in number."
}
}
}