Webex · Schema

ContactPayloadForModify

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
name string Receptionist Contact Directory name. The directory name should be greater than 0 and less than 41 characters in length.
contacts array Non-empty array of users or location features assigned to this Receptionist Contact Directory.
View JSON Schema on GitHub

JSON Schema

webex-contactpayloadformodify-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContactPayloadForModify",
  "title": "ContactPayloadForModify",
  "type": "object",
  "required": [
    "name",
    "contacts"
  ],
  "properties": {
    "name": {
      "type": "string",
      "example": "My_Directory",
      "description": "Receptionist Contact Directory name. The directory name should be greater than 0 and less than 41 characters in length."
    },
    "contacts": {
      "type": "array",
      "items": {
        "type": "string",
        "example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS8wNTUyZjY3Yi01OWE5LTQxYmItODczNi0xYjA0MWQxZGRkNWU"
      },
      "description": "Non-empty array of users or location features assigned to this Receptionist Contact Directory."
    }
  }
}