update_person
Modify user details in Webex by providing a unique person ID and updated information. Part of the Webex MCP Server for managing messaging capabilities.
Instructions
Update a person's details in Webex.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
personDetails | Yes | The details of the person to update. | |
personId | Yes | The unique identifier for the person to update. |
Input Schema (JSON Schema)
{
"properties": {
"personDetails": {
"description": "The details of the person to update.",
"type": "object"
},
"personId": {
"description": "The unique identifier for the person to update.",
"type": "string"
}
},
"required": [
"personId",
"personDetails"
],
"type": "object"
}