Webex · Schema
GetCallRecordingTermsOfServiceObject
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| vendorId | string | A unique identifier for the vendor. |
| vendorName | string | A unique name for the vendor. |
| termsOfServiceEnabled | boolean | Whether or not the call recording terms of service are enabled. |
| termsOfServiceUrl | string | Url where can be found terms of service for the vendor. **NOTE**: This is expected to be empty for webex recording platform. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GetCallRecordingTermsOfServiceObject",
"title": "GetCallRecordingTermsOfServiceObject",
"type": "object",
"required": [
"vendorId",
"vendorName",
"termsOfServiceEnabled",
"termsOfServiceUrl"
],
"properties": {
"vendorId": {
"type": "string",
"example": "Y2lzY29zcGFyazovL3VzL1JFQ09SRElOR19WRU5ET1IvNTNkYzRjODctODQwOC00ODgyLTk1NzAtZGNhMmJjZGI5Mjgw",
"description": "A unique identifier for the vendor."
},
"vendorName": {
"type": "string",
"example": "Dubber",
"description": "A unique name for the vendor."
},
"termsOfServiceEnabled": {
"type": "boolean",
"example": true,
"description": "Whether or not the call recording terms of service are enabled."
},
"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."
}
}
}