Webex · Schema
PartnerAdminUser
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The user ID of the partner admin. |
| displayName | string | The display name of the partner admin. |
| firstName | string | The first name of the partner admin. |
| lastName | string | The last name of the partner admin. |
| emails | array | List of emails for the partner admin. |
| roleInCustomerOrg | string | The role of this partner admin in the given customer org. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PartnerAdminUser",
"title": "PartnerAdminUser",
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "Y2LZY29ZCGFYAZOVL3VZL1BFT1BMRS9JOTYWOTZIYI1KYTRHLTQ3NZETYTC2ZI1KNDEZODQWZWVM1TQ",
"description": "The user ID of the partner admin."
},
"displayName": {
"type": "string",
"example": "display name",
"description": "The display name of the partner admin."
},
"firstName": {
"type": "string",
"example": "John",
"description": "The first name of the partner admin."
},
"lastName": {
"type": "string",
"example": "Doe",
"description": "The last name of the partner admin."
},
"emails": {
"type": "array",
"items": {
"type": "string",
"example": "[email protected]"
},
"description": "List of emails for the partner admin."
},
"roleInCustomerOrg": {
"type": "string",
"example": "id_full_admin",
"description": "The role of this partner admin in the given customer org."
}
}
}