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