Webex · Schema

RecordingMetaData

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
orgId string Organization ID used for this operation.
urlExpiration integer Number of minutes (from now) when the signed url expires.
View JSON Schema on GitHub

JSON Schema

webex-recordingmetadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RecordingMetaData",
  "title": "RecordingMetaData",
  "type": "object",
  "properties": {
    "orgId": {
      "type": "string",
      "description": "Organization ID used for this operation.",
      "format": "uuid",
      "example": "f1b130da-0cad-4d8b-91dd-7a3085440e89"
    },
    "urlExpiration": {
      "type": "integer",
      "description": "Number of minutes (from now) when the signed url expires.",
      "format": "int32",
      "example": 30
    }
  }
}