Webex · Schema

CallRecordingVendorsPatchRequest

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Unique identifier of the call recording vendor.
orgDefaultEnabled boolean Vendor is enabled by default.
storageRegion string Regions where call recordings are stored.
orgStorageRegionEnabled boolean Region-based call recording storage is enabled.
failureBehavior object Type of failure behavior.
orgFailureBehaviorEnabled boolean Failure behavior is enabled.
View JSON Schema on GitHub

JSON Schema

webex-callrecordingvendorspatchrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CallRecordingVendorsPatchRequest",
  "title": "CallRecordingVendorsPatchRequest",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL1JFQ09SRElOR19WRU5ET1IvMGE0MjY3NTQtYTQ3MC00YzJkLThiYTAtZmJjNjc3M2E4YTdj",
      "description": "Unique identifier of the call recording vendor."
    },
    "orgDefaultEnabled": {
      "type": "boolean",
      "example": true,
      "description": "Vendor is enabled by default."
    },
    "storageRegion": {
      "type": "string",
      "example": "US",
      "description": "Regions where call recordings are stored."
    },
    "orgStorageRegionEnabled": {
      "type": "boolean",
      "example": true,
      "description": "Region-based call recording storage is enabled."
    },
    "failureBehavior": {
      "$ref": "#/components/schemas/FailureBehavior",
      "description": "Type of failure behavior."
    },
    "orgFailureBehaviorEnabled": {
      "type": "boolean",
      "example": true,
      "description": "Failure behavior is enabled."
    }
  }
}