Webex · Schema

DeleteTranscriptObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
reason string Reason for deleting a transcript. Only required when a Compliance Officer is operating on another user's transcript.
comment string Explanation for deleting a transcript. The comment can be a maximum of 255 characters long.
View JSON Schema on GitHub

JSON Schema

webex-deletetranscriptobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeleteTranscriptObject",
  "title": "DeleteTranscriptObject",
  "type": "object",
  "properties": {
    "reason": {
      "type": "string",
      "example": "audit",
      "description": "Reason for deleting a transcript. Only required when a Compliance Officer is operating on another user's transcript."
    },
    "comment": {
      "type": "string",
      "example": "Maintain data privacy",
      "description": "Explanation for deleting a transcript. The comment can be a maximum of 255 characters long."
    }
  }
}