Cisco Voice Portal · Schema

OperationStatus

Contact CenterIVRTelephonyVoiceVXML

Properties

Name Type Description
operationId string
status string
message string
startedAt string
completedAt string
progress number Progress percentage (0-100)
View JSON Schema on GitHub

JSON Schema

cisco-voice-portal-administration-operation-status-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "OperationStatus",
  "type": "object",
  "properties": {
    "operationId": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "message": {
      "type": "string"
    },
    "startedAt": {
      "type": "string"
    },
    "completedAt": {
      "type": "string"
    },
    "progress": {
      "type": "number",
      "description": "Progress percentage (0-100)"
    }
  }
}