get_user
Retrieve detailed user information from BoldSign using their unique ID to access account details and manage e-signature platform users.
Instructions
Retrieves detailed information for a specific BoldSign user based on their unique user ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
userId | Yes | Required. The unique identifier (ID) of the user to retrieve. This can be obtained from the list users tool. |
Input Schema (JSON Schema)
{
"properties": {
"userId": {
"description": "Required. The unique identifier (ID) of the user to retrieve. This can be obtained from the list users tool.",
"type": "string"
}
},
"required": [
"userId"
],
"type": "object"
}