Cisco Webex · Schema
UpdatePersonRequest
CollaborationCommunicationsMeetingsMessagingTeamsVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| emails | array | |
| displayName | string | |
| firstName | string | |
| lastName | string | |
| avatar | string | |
| orgId | string | |
| roles | array | |
| licenses | array | |
| department | string | |
| manager | string | |
| managerId | string | |
| title | string | |
| addresses | array | |
| phoneNumbers | array | |
| extension | string | |
| locationId | string | |
| loginEnabled | boolean |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UpdatePersonRequest",
"title": "UpdatePersonRequest",
"type": "object",
"properties": {
"emails": {
"type": "array",
"items": {
"type": "string",
"format": "email"
}
},
"displayName": {
"type": "string"
},
"firstName": {
"type": "string"
},
"lastName": {
"type": "string"
},
"avatar": {
"type": "string",
"format": "uri"
},
"orgId": {
"type": "string"
},
"roles": {
"type": "array",
"items": {
"type": "string"
}
},
"licenses": {
"type": "array",
"items": {
"type": "string"
}
},
"department": {
"type": "string"
},
"manager": {
"type": "string"
},
"managerId": {
"type": "string"
},
"title": {
"type": "string"
},
"addresses": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"streetAddress": {
"type": "string"
},
"locality": {
"type": "string"
},
"region": {
"type": "string"
},
"postalCode": {
"type": "string"
},
"country": {
"type": "string"
}
}
}
},
"phoneNumbers": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"value": {
"type": "string"
}
}
}
},
"extension": {
"type": "string"
},
"locationId": {
"type": "string"
},
"loginEnabled": {
"type": "boolean"
}
}
}