Webex · Schema
MergePersonRequestModel
Merge Person
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| override | boolean | Override flag which will override the existing person with the new data if set to true. Default is false. |
| firstName | string | firstName |
| lastName | string | lastName |
| phone | array | Phone Number |
| array | ||
| temporaryId | array | Temporary Id |
| customerId | array | Customer Id |
| socialId | array | Social Id |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/MergePersonRequestModel",
"title": "MergePersonRequestModel",
"type": "object",
"properties": {
"override": {
"type": "boolean",
"description": "Override flag which will override the existing person with the new data if set to true. Default is false.",
"example": false
},
"firstName": {
"type": "string",
"description": "firstName",
"example": "John"
},
"lastName": {
"type": "string",
"description": "lastName",
"example": "Doe"
},
"phone": {
"uniqueItems": true,
"type": "array",
"description": "Phone Number",
"example": [
"+12342342345"
],
"items": {
"type": "string"
}
},
"email": {
"uniqueItems": true,
"type": "array",
"description": "Email",
"example": [
"[email protected]"
],
"items": {
"type": "string"
}
},
"temporaryId": {
"uniqueItems": true,
"type": "array",
"description": "Temporary Id",
"example": [
"2342s-sdsd-342345"
],
"items": {
"type": "string"
}
},
"customerId": {
"uniqueItems": true,
"type": "array",
"description": "Customer Id",
"example": [
"234"
],
"items": {
"type": "string"
}
},
"socialId": {
"uniqueItems": true,
"type": "array",
"description": "Social Id",
"example": [
"[email protected],+12342342345"
],
"items": {
"type": "string"
}
}
},
"description": "Merge Person"
}