Webex · Schema

ConsultTransferResourceRequest

Request body for a consult transfer.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
to string The consulted user destination ID to transfer, maximum length 36 characters.
destinationType string The user can transfer to another consulted user in the team(```agent```), dial number(```dialNumber```), entry point(```entryPoint```)
View JSON Schema on GitHub

JSON Schema

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