Webex · Schema

CallRecordingLocationVendorsResponse

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
orgDefaultEnabled boolean Default call recording is enabled.
orgDefaultVendorId string Unique identifier of a vendor.
orgDefaultVendorName string Name of the call recording vendor.
defaultVendorId string Unique identifier of a vendor.
defaultVendorName string Name of the call recording vendor.
vendors array List of available vendors and their details.
orgStorageRegionEnabled boolean Region-based storage is enabled.
orgStorageRegion string Org level two character Region code.
storageRegion string Location level character Region code.
orgFailureBehaviorEnabled boolean Failure behavior is enabled.
orgFailureBehavior object Type of org-level failure behavior.
failureBehavior object Type of location level failure behavior.
View JSON Schema on GitHub

JSON Schema

webex-callrecordinglocationvendorsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CallRecordingLocationVendorsResponse",
  "title": "CallRecordingLocationVendorsResponse",
  "type": "object",
  "required": [
    "orgDefaultEnabled",
    "orgDefaultVendorId",
    "orgDefaultVendorName",
    "defaultVendorId",
    "defaultVendorName",
    "vendors",
    "failureBehavior"
  ],
  "properties": {
    "orgDefaultEnabled": {
      "type": "boolean",
      "example": true,
      "description": "Default call recording is enabled."
    },
    "orgDefaultVendorId": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL1JFQ09SRElOR19WRU5ET1IvMGE0MjY3NTQtYTQ3MC00YzJkLThiYTAtZmJjNjc3M2E4YTdj",
      "description": "Unique identifier of a vendor."
    },
    "orgDefaultVendorName": {
      "type": "string",
      "example": "Webex",
      "description": "Name of the call recording vendor."
    },
    "defaultVendorId": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL1JFQ09SRElOR19WRU5ET1IvMGE0MjY3NTQtYTQ3MC00YzJkLThiYTAtZmJjNjc3M2E4YTdj",
      "description": "Unique identifier of a vendor."
    },
    "defaultVendorName": {
      "type": "string",
      "example": "Webex",
      "description": "Name of the call recording vendor."
    },
    "vendors": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Vendor"
      },
      "description": "List of available vendors and their details."
    },
    "orgStorageRegionEnabled": {
      "type": "boolean",
      "example": true,
      "description": "Region-based storage is enabled."
    },
    "orgStorageRegion": {
      "type": "string",
      "example": "US",
      "description": "Org level two character Region code."
    },
    "storageRegion": {
      "type": "string",
      "example": "US",
      "description": "Location level character Region code."
    },
    "orgFailureBehaviorEnabled": {
      "type": "boolean",
      "example": true,
      "description": "Failure behavior is enabled."
    },
    "orgFailureBehavior": {
      "$ref": "#/components/schemas/FailureBehavior",
      "description": "Type of org-level failure behavior."
    },
    "failureBehavior": {
      "$ref": "#/components/schemas/FailureBehavior",
      "description": "Type of location level failure behavior."
    }
  }
}