Webex · Schema

CallRecordingVendorPatch

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
vendorId string Unique identifier of the vendor.
storageRegion string Call recording storage region. Only applicable for Webex as a vendor and isn't used for other vendors.
failureBehavior object Call recording failure behavior.
View JSON Schema on GitHub

JSON Schema

webex-callrecordingvendorpatch-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CallRecordingVendorPatch",
  "title": "CallRecordingVendorPatch",
  "type": "object",
  "required": [
    "vendorId"
  ],
  "properties": {
    "vendorId": {
      "type": "string",
      "description": "Unique identifier of the vendor."
    },
    "storageRegion": {
      "type": "string",
      "description": "Call recording storage region. Only applicable for Webex as a vendor and isn't used for other vendors."
    },
    "failureBehavior": {
      "$ref": "#/components/schemas/FailureBehavior",
      "description": "Call recording failure behavior."
    }
  }
}