Webex · Schema

AddressLookupErrorObject

Object containing details about an error encountered during address lookup.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
code string Error code.
title string Error title.
detail string Detailed error message.
View JSON Schema on GitHub

JSON Schema

webex-addresslookuperrorobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AddressLookupErrorObject",
  "title": "AddressLookupErrorObject",
  "type": "object",
  "description": "Object containing details about an error encountered during address lookup.",
  "properties": {
    "code": {
      "type": "string",
      "description": "Error code.",
      "example": "PMP4004"
    },
    "title": {
      "type": "string",
      "description": "Error title.",
      "example": "INVALID_STREET_ADDRESS"
    },
    "detail": {
      "type": "string",
      "description": "Detailed error message.",
      "example": "The street address provided is invalid."
    }
  }
}