Webex · Schema

ResumeRecordingResourceRequest

Request body for resuming a recording.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
autoResumed boolean The setting to mention if the recording has to resume automatically.
View JSON Schema on GitHub

JSON Schema

webex-resumerecordingresourcerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ResumeRecordingResourceRequest",
  "title": "ResumeRecordingResourceRequest",
  "description": "Request body for resuming a recording.",
  "properties": {
    "autoResumed": {
      "description": "The setting to mention if the recording has to resume automatically.",
      "type": "boolean",
      "example": true
    }
  },
  "required": [
    "autoResumed"
  ],
  "type": "object"
}