Webex · Schema

CustomerProvisioningPrecheckResponse

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
message string A textual representation of the Precheck response message containing the `infoCode` object in the case of a success response and the `errorCode` object in the case of failure.
info object A list of `ProvisioningPreCheckResponseInfo` objects.
View JSON Schema on GitHub

JSON Schema

webex-customerprovisioningprecheckresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomerProvisioningPrecheckResponse",
  "title": "CustomerProvisioningPrecheckResponse",
  "type": "object",
  "properties": {
    "message": {
      "type": "string",
      "example": "success",
      "description": "A textual representation of the Precheck response message containing the `infoCode` object in the case of a success response and the `errorCode` object in the case of failure."
    },
    "info": {
      "type": "object",
      "properties": {
        "infoCode": {
          "type": "number",
          "example": 100,
          "description": "Provisioning Precheck `infoCode`."
        },
        "description": {
          "type": "string",
          "example": "Provisioning Precheck validation successful.",
          "description": "A textual description of the `infoCode`."
        }
      },
      "description": "A list of `ProvisioningPreCheckResponseInfo` objects."
    }
  }
}