get_user
Retrieve detailed user information in BoldSign by specifying the user's unique ID. Useful for managing user data and permissions efficiently.
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)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"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"
}