get_user
Retrieve specific user details from BookStack by providing a user ID to access account information and profile data.
Instructions
Get details of a specific user
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | User ID |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "User ID",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}