get_person_details
Retrieve detailed information about a person, including optional Webex Calling user data, by providing their unique ID via the Webex Messaging API.
Instructions
Get details of a person by their ID from Webex Messaging API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
callingData | No | Include Webex Calling user details in the response. | |
personId | Yes | The unique identifier for the person. |
Input Schema (JSON Schema)
{
"properties": {
"callingData": {
"description": "Include Webex Calling user details in the response.",
"type": "boolean"
},
"personId": {
"description": "The unique identifier for the person.",
"type": "string"
}
},
"required": [
"personId"
],
"type": "object"
}