Webex · Schema

CallRecordingJobStatus

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
name string Name of the job.
id string Unique identifier of the job.
trackingId string Unique identifier to track the flow of HTTP requests.
sourceUserId string Unique identifier of the user who has run the job.
sourceCustomerId string Unique identifier of the customer who has run the job.
targetCustomerId string Unique identifier of the customer for which the job was run.
instanceId number Unique identifier to identify the instance of the job.
jobExecutionStatus array Displays the most recent step's execution status. Contains execution statuses of all the steps involved in the execution of the job.
latestExecutionStatus object Most recent status of the job at the time of invocation.
locationId string Unique identifier of a location.
vendorId string Unique identifier of a vendor.
counts object Job statistics.
View JSON Schema on GitHub

JSON Schema

webex-callrecordingjobstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CallRecordingJobStatus",
  "title": "CallRecordingJobStatus",
  "type": "object",
  "required": [
    "id",
    "trackingId",
    "sourceUserId",
    "sourceCustomerId",
    "targetCustomerId",
    "instanceId",
    "latestExecutionStatus",
    "vendorId",
    "counts"
  ],
  "properties": {
    "name": {
      "type": "string",
      "example": "managecallrecordingprovider",
      "description": "Name of the job."
    },
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL0pPQl9JRC8wNjZkOTQzNC1kODEyLTQzODItODVhMC00MjBlOTFlODg3ZTY",
      "description": "Unique identifier of the job."
    },
    "trackingId": {
      "type": "string",
      "example": "ADMINBATCHCLIENT_a02c7b0c-4d28-4e98-b47b-0a135a4b287f_0",
      "description": "Unique identifier to track the flow of HTTP requests."
    },
    "sourceUserId": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS9jODA2NzZhZC0yNjRlLTRmMWMtYmIwYS1jMWZiNmQ0ODlmZTI",
      "description": "Unique identifier of the user who has run the job."
    },
    "sourceCustomerId": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL09SR0FOSVpBVElPTi8zNDEyODExZi0xMWI4LTQ2YTAtYWExNS1lZmEwMjRjODI5ODM",
      "description": "Unique identifier of the customer who has run the job."
    },
    "targetCustomerId": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL09SR0FOSVpBVElPTi8zNDEyODExZi0xMWI4LTQ2YTAtYWExNS1lZmEwMjRjODI5ODM",
      "description": "Unique identifier of the customer for which the job was run."
    },
    "instanceId": {
      "type": "number",
      "example": 637210,
      "description": "Unique identifier to identify the instance of the job."
    },
    "jobExecutionStatus": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/JobExecutionStatusObject"
      },
      "description": "Displays the most recent step's execution status. Contains execution statuses of all the steps involved in the execution of the job."
    },
    "latestExecutionStatus": {
      "$ref": "#/components/schemas/LatestExecutionStatus",
      "description": "Most recent status of the job at the time of invocation."
    },
    "locationId": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL0xPQ0FUSU9OLzlmZTFmZDllLTlkM2QtNDUxZi04MDEwLTMwY2U1ZjRlNTYyNQ",
      "description": "Unique identifier of a location."
    },
    "vendorId": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL1JFQ09SRElOR19WRU5ET1IvZmYzNzMzOTYtMGVmMC00N2NiLTk5NzEtNzg0MDI5YzZjMTQ3",
      "description": "Unique identifier of a vendor."
    },
    "counts": {
      "$ref": "#/components/schemas/CountObject",
      "description": "Job statistics."
    }
  }
}