list_dataverse_businessunits
Retrieve and filter business units from your Dataverse environment to understand organizational structure and find specific units by criteria.
Instructions
Retrieves a list of business units in the Dataverse environment with filtering and sorting options. Use this to discover available business units, understand organizational hierarchy, and find specific business units by criteria.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filter | No | OData filter expression | |
orderby | No | OData orderby expression | |
select | No | OData select expression to specify which fields to return | |
top | No | Maximum number of business units to return (default: 50) |
Input Schema (JSON Schema)
{
"properties": {
"filter": {
"description": "OData filter expression",
"type": "string"
},
"orderby": {
"description": "OData orderby expression",
"type": "string"
},
"select": {
"description": "OData select expression to specify which fields to return",
"type": "string"
},
"top": {
"description": "Maximum number of business units to return (default: 50)",
"maximum": 5000,
"minimum": 1,
"type": "number"
}
},
"type": "object"
}