Webex · Schema

MergePersonsRequest

Merge two or more persons

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
personIdsToMerge array List of Person Ids to merge
View JSON Schema on GitHub

JSON Schema

webex-mergepersonsrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MergePersonsRequest",
  "title": "MergePersonsRequest",
  "required": [
    "personIdsToMerge"
  ],
  "type": "object",
  "properties": {
    "personIdsToMerge": {
      "maxItems": 2147483647,
      "minItems": 1,
      "type": "array",
      "description": "List of Person Ids to merge",
      "example": [
        "6435e80153802b2a273bae3a",
        "6435e80153802b2a273bae3b",
        "6435e80153802b2a273bae3c"
      ],
      "items": {
        "type": "string"
      }
    }
  },
  "description": "Merge two or more persons"
}