Webex · Schema

ConferenceResourceRequest

Request body for a conference.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
agentId string The unique Id of the user logged in as an agent.
to string The destination ID to consult, maximum length 36 characters.
destinationType string The user can consult to another user in the team(```agent```), dial number(```dialNumber```), entry point(```entryPoint```).
View JSON Schema on GitHub

JSON Schema

webex-conferenceresourcerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConferenceResourceRequest",
  "title": "ConferenceResourceRequest",
  "description": "Request body for a conference.",
  "properties": {
    "agentId": {
      "description": "The unique Id of the user logged in as an agent.",
      "type": "string",
      "format": "UUID",
      "example": "315fbb91-2288-427c-9588-ec764cd46ea4"
    },
    "to": {
      "description": "The destination ID to consult, maximum length 36 characters.",
      "type": "string",
      "example": "315fbb91-2288-427c-9588-ec764cd46ea4"
    },
    "destinationType": {
      "description": "The user can consult to another user in the team(```agent```), dial number(```dialNumber```), entry point(```entryPoint```).",
      "type": "string",
      "example": "agent"
    }
  },
  "required": [
    "to"
  ],
  "type": "object"
}