Webex · Schema

GetCallRecordingObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
organization object Details of the organization.
enabled boolean Whether or not the call recording is enabled.
vendorId string A unique identifier for the vendor.
vendorName string A unique name for the vendor.
termsOfServiceUrl string Url where can be found terms of service for the vendor. **NOTE**: This is expected to be empty for webex recording platform.
View JSON Schema on GitHub

JSON Schema

webex-getcallrecordingobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetCallRecordingObject",
  "title": "GetCallRecordingObject",
  "type": "object",
  "required": [
    "organization",
    "enabled",
    "vendorId",
    "vendorName",
    "termsOfServiceUrl"
  ],
  "properties": {
    "organization": {
      "type": "object",
      "required": [
        "id",
        "name"
      ],
      "properties": {
        "id": {
          "type": "string",
          "example": "Y2lzY29zcGFyazovL3VzL09SR0FOSVpBVElPTi9lNTEzMTg1Zi01YTJmLTQ0OTUtYjM1Yi03MDY3YmY3Y2U0OGU",
          "description": "A unique identifier for the organization."
        },
        "name": {
          "type": "string",
          "example": "Alaska Cisco Organization",
          "description": "A unique name for the organization."
        }
      },
      "description": "Details of the organization."
    },
    "enabled": {
      "type": "boolean",
      "example": true,
      "description": "Whether or not the call recording is enabled."
    },
    "vendorId": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL1JFQ09SRElOR19WRU5ET1IvNTNkYzRjODctODQwOC00ODgyLTk1NzAtZGNhMmJjZGI5Mjgw",
      "description": "A unique identifier for the vendor."
    },
    "vendorName": {
      "type": "string",
      "example": "Dubber",
      "description": "A unique name for the vendor."
    },
    "termsOfServiceUrl": {
      "type": "string",
      "example": "https://www.dubber.net/terms",
      "description": "Url where can be found terms of service for the vendor.\n\n**NOTE**: This is expected to be empty for webex recording platform."
    }
  }
}