Webex · Schema

CallbackDetails

Details for a callback task.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
callbackOrigin string The source of callback request. The supported value is ```web```.
callbackType string The type of callback. The supported value is ```immediate```.
View JSON Schema on GitHub

JSON Schema

webex-callbackdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CallbackDetails",
  "title": "CallbackDetails",
  "description": "Details for a callback task.",
  "type": "object",
  "required": [
    "callbackOrigin",
    "callbackType"
  ],
  "properties": {
    "callbackOrigin": {
      "type": "string",
      "description": "The source of callback request. The supported value is ```web```.",
      "example": "web"
    },
    "callbackType": {
      "type": "string",
      "description": "The type of callback. The supported value is ```immediate```.",
      "example": "immediate"
    }
  }
}