get_businessunit_users
Retrieve users associated with a specific business unit to understand user assignments and organizational membership, with option to include subsidiary business unit users.
Instructions
Retrieves all users associated with a specific business unit, with option to include users from subsidiary business units. Use this to understand user assignments and organizational membership.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
businessUnitId | Yes | Unique identifier of the business unit | |
includeSubsidiaryUsers | No | Whether to include users from subsidiary business units |
Input Schema (JSON Schema)
{
"properties": {
"businessUnitId": {
"description": "Unique identifier of the business unit",
"type": "string"
},
"includeSubsidiaryUsers": {
"default": false,
"description": "Whether to include users from subsidiary business units",
"type": "boolean"
}
},
"required": [
"businessUnitId"
],
"type": "object"
}