set_businessunit_parent
Change the parent business unit to reorganize organizational hierarchy and reporting relationships in Microsoft Dataverse.
Instructions
Changes the parent business unit for a given business unit, effectively moving it within the organizational hierarchy. Use this to reorganize business unit structure and reporting relationships.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
businessUnitId | Yes | Unique identifier of the business unit | |
parentBusinessUnitId | Yes | Unique identifier of the new parent business unit |
Input Schema (JSON Schema)
{
"properties": {
"businessUnitId": {
"description": "Unique identifier of the business unit",
"type": "string"
},
"parentBusinessUnitId": {
"description": "Unique identifier of the new parent business unit",
"type": "string"
}
},
"required": [
"businessUnitId",
"parentBusinessUnitId"
],
"type": "object"
}