Webex · Schema

TransferResourceRequest

Request body for transferring a task.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

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

JSON Schema

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