Webex · Schema

RouteListNumberPatchResponse

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
phoneNumber string Phone Number whose status is being reported.
numberStatus object Status of the number. Possible values are `INVALID`, `DUPLICATE`, `DUPLICATE_IN_LIST`, or `UNAVAILABLE`.
message string Message of the number add status.
View JSON Schema on GitHub

JSON Schema

webex-routelistnumberpatchresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RouteListNumberPatchResponse",
  "title": "RouteListNumberPatchResponse",
  "type": "object",
  "required": [
    "phoneNumber",
    "numberStatus",
    "message"
  ],
  "properties": {
    "phoneNumber": {
      "type": "string",
      "example": "+2147891122",
      "description": "Phone Number whose status is being reported."
    },
    "numberStatus": {
      "$ref": "#/components/schemas/NumberStatus",
      "description": "Status of the number. Possible values are `INVALID`, `DUPLICATE`, `DUPLICATE_IN_LIST`, or `UNAVAILABLE`."
    },
    "message": {
      "type": "string",
      "example": "Invalid Number",
      "description": "Message of the number add status."
    }
  }
}