Webex · Schema

DisableCallingLocationJobStatus

Status and details of a disable calling location job.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
name string Name of the job
id string Unique identifier for the job.
locationName string Name of the calling location being disabled.
trackingId string Tracking identifier for the job.
sourceUserId string ID of the user who initiated the job.
sourceCustomerId string Organization ID of the source customer.
targetCustomerId string Organization ID of the target customer.
instanceId integer Instance identifier for the job.
latestExecutionStatus string Latest execution status of the job.
latestExecutionExitCode string Latest execution exit code.
counts object Counts of processed accounts during disable calling location operation.
View JSON Schema on GitHub

JSON Schema

webex-disablecallinglocationjobstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DisableCallingLocationJobStatus",
  "title": "DisableCallingLocationJobStatus",
  "type": "object",
  "description": "Status and details of a disable calling location job.",
  "example": {
    "name": "deletecallinglocation",
    "id": "Y2lzY29zcGFyazovL3VzL0pPQl9JRC8zZjczYTAyOS1lYWZkLTQ5NzUtYjcyYi1jNzlkYWE1ZTkyZmE",
    "trackingId": "ROUTERGW_882b1b3b-b247-4d4f-abe9-4ccec7f7e3b0",
    "sourceUserId": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS9kMzg2MjhiYy0zYjk4LTRjMjMtODEwMy0wMzRhMjI0ZmRiNjE",
    "sourceCustomerId": "Y2lzY29zcGFyazovL3VzL09SR0FOSVpBVElPTi84NzU2ZjkwZS1iZDg4LTRhOTQtOGZiZC0wMzM2NzhmMDU5ZjM",
    "targetCustomerId": "Y2lzY29zcGFyazovL3VzL09SR0FOSVpBVElPTi84NzU2ZjkwZS1iZDg4LTRhOTQtOGZiZC0wMzM2NzhmMDU5ZjM",
    "instanceId": 1472955,
    "jobExecutionStatus": [
      {
        "id": 1497186,
        "lastUpdated": "2025-07-27T13:19:39.702Z",
        "statusMessage": "STARTING",
        "exitCode": "UNKNOWN",
        "createdTime": "2025-07-27T13:19:39.702Z",
        "timeElapsed": "PT0S"
      }
    ],
    "latestExecutionStatus": "STARTING",
    "latestExecutionExitCode": "UNKNOWN",
    "locationName": "San Jose HQ",
    "counts": {
      "totalVirtualExtensionsAccount": 0,
      "virtualExtensionsDeleted": 0,
      "virtualExtensionsDeleteFailed": 0,
      "totalFeatureAccounts": 1,
      "featureAccountsDeleted": 1,
      "featureAccountsDeleteFailed": 0
    }
  },
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the job"
    },
    "id": {
      "type": "string",
      "description": "Unique identifier for the job."
    },
    "locationName": {
      "type": "string",
      "description": "Name of the calling location being disabled."
    },
    "trackingId": {
      "type": "string",
      "description": "Tracking identifier for the job."
    },
    "sourceUserId": {
      "type": "string",
      "description": "ID of the user who initiated the job."
    },
    "sourceCustomerId": {
      "type": "string",
      "description": "Organization ID of the source customer."
    },
    "targetCustomerId": {
      "type": "string",
      "description": "Organization ID of the target customer."
    },
    "instanceId": {
      "type": "integer",
      "format": "int64",
      "description": "Instance identifier for the job."
    },
    "latestExecutionStatus": {
      "type": "string",
      "description": "Latest execution status of the job."
    },
    "latestExecutionExitCode": {
      "type": "string",
      "description": "Latest execution exit code."
    },
    "counts": {
      "description": "Counts of processed accounts during disable calling location operation.",
      "allOf": [
        {
          "$ref": "#/components/schemas/DisableCallingLocationCounts"
        },
        {
          "description": "Counts of processed accounts during disable calling location operation."
        }
      ]
    }
  }
}