Webex · Schema

AddIdentitiesToPersonRequestModel

Add Identities to Person

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
phone array Phone Number
email array Email
temporaryId array Temporary Id
customerId array Customer Id
View JSON Schema on GitHub

JSON Schema

webex-addidentitiestopersonrequestmodel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AddIdentitiesToPersonRequestModel",
  "title": "AddIdentitiesToPersonRequestModel",
  "type": "object",
  "properties": {
    "phone": {
      "type": "array",
      "description": "Phone Number",
      "example": [
        "+12342342345"
      ],
      "items": {
        "type": "string"
      }
    },
    "email": {
      "type": "array",
      "description": "Email",
      "example": [
        "[email protected]"
      ],
      "items": {
        "type": "string"
      }
    },
    "temporaryId": {
      "type": "array",
      "description": "Temporary Id",
      "example": [
        "2342s-sdsd-342345"
      ],
      "items": {
        "type": "string"
      }
    },
    "customerId": {
      "type": "array",
      "description": "Customer Id",
      "example": [
        "234"
      ],
      "items": {
        "type": "string"
      }
    }
  },
  "description": "Add Identities to Person"
}