Webex · Schema

AddressBookEntryDetailsDTO

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
entryName string A name for the address book entry.
phoneNumber string The phone number for the entry.
View JSON Schema on GitHub

JSON Schema

webex-addressbookentrydetailsdto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AddressBookEntryDetailsDTO",
  "title": "AddressBookEntryDetailsDTO",
  "required": [
    "entryName",
    "phoneNumber"
  ],
  "type": "object",
  "properties": {
    "entryName": {
      "type": "string",
      "description": "A name for the address book entry.",
      "example": "James Bond"
    },
    "phoneNumber": {
      "type": "string",
      "description": "The phone number for the entry.",
      "example": "+14033212"
    }
  }
}