create_person
Create a new person in Webex with details like name, email, phone, and roles. Set location, department, and manager for streamlined user management.
Instructions
Create a new person in Webex.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
addresses | No | The addresses associated with the person. | |
avatar | No | The avatar URL for the person. | |
department | No | The department of the person. | |
displayName | No | The display name of the person. | |
emails | Yes | The email addresses associated with the person. | |
extension | No | The extension number for the person. | |
firstName | Yes | The first name of the person. | |
lastName | Yes | The last name of the person. | |
licenses | No | The licenses associated with the person. | |
locationId | No | The location ID for the person. | |
manager | No | The name of the manager for the person. | |
managerId | No | The manager ID for the person. | |
orgId | No | The organization ID for the person. | |
phoneNumbers | No | The phone numbers associated with the person. | |
roles | No | The roles assigned to the person. | |
siteUrls | No | The site URLs associated with the person. | |
title | No | The title of the person. |
Input Schema (JSON Schema)
{
"properties": {
"addresses": {
"description": "The addresses associated with the person.",
"items": {
"properties": {
"country": {
"type": "string"
},
"locality": {
"type": "string"
},
"postalCode": {
"type": "string"
},
"region": {
"type": "string"
},
"streetAddress": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"avatar": {
"description": "The avatar URL for the person.",
"type": "string"
},
"department": {
"description": "The department of the person.",
"type": "string"
},
"displayName": {
"description": "The display name of the person.",
"type": "string"
},
"emails": {
"description": "The email addresses associated with the person.",
"items": {
"type": "string"
},
"type": "array"
},
"extension": {
"description": "The extension number for the person.",
"type": "string"
},
"firstName": {
"description": "The first name of the person.",
"type": "string"
},
"lastName": {
"description": "The last name of the person.",
"type": "string"
},
"licenses": {
"description": "The licenses associated with the person.",
"items": {
"type": "string"
},
"type": "array"
},
"locationId": {
"description": "The location ID for the person.",
"type": "string"
},
"manager": {
"description": "The name of the manager for the person.",
"type": "string"
},
"managerId": {
"description": "The manager ID for the person.",
"type": "string"
},
"orgId": {
"description": "The organization ID for the person.",
"type": "string"
},
"phoneNumbers": {
"description": "The phone numbers associated with the person.",
"items": {
"properties": {
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"roles": {
"description": "The roles assigned to the person.",
"items": {
"type": "string"
},
"type": "array"
},
"siteUrls": {
"description": "The site URLs associated with the person.",
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"description": "The title of the person.",
"type": "string"
}
},
"required": [
"emails",
"firstName",
"lastName"
],
"type": "object"
}