Chapter 1. Asset repository
Project Explorer from the unified environment of Red Hat JBoss BRMS.
1.1. Creating an Organizational Unit
kie-config-cli tool or the REST API calls.
Creating an Organizational Unit in Business Central
Important
admin role can create organizational units.
Procedure 1.1. Using Business Central to Create an Organizational Unit
- In Business Central, go to → .
- On the perspective menu, click → .
- In the Organization Unit Manager view, click . The Add New Organizational Unit dialog window opens.

Figure 1.1. Add New Organizational Unit Dialog Window
- Enter the two mandatory parameters (name and default group ID) and click .
Creating an Organizational Unit Using the kie-config-cli Tool
kie-config-cli tool as well. To do so, run the create-org-unit command. The tool then guides you through the entire process of creating an organizational unit by asking for other required parameters. Type help for a list of all commands.
kie-config-cli tool, see Chapter 5, Command line configuration.
Creating an Organizational Unit Using the REST API
POST REST API call. Details of the organizational unit are defined by the JSON entity.
OrganizationalUnit instance. Call returns a CreateOrganizationalUnitRequest instance.
Example 1.1. Creating an Organizational Unit Using the Curl Utility
{
"name" : "helloWorldUnit",
"description" : "Organizational unit for the helloworldrepo repository.",
"owner" : "tester",
"repositories" : ["helloworldrepo"]
}curl -X POST 'localhost:8080/business-central/rest/organizationalunits/' -u USERNAME:PASSWORD -H 'Accept: application/json' -H 'Content-Type: application/json' -d '{"name":"helloWorldUnit","description":"Organizational unit for the helloworldrepo repository.","owner":"tester","repositories":["helloworldrepo"]}'
Where did the comment section go?
Red Hat's documentation publication system recently went through an upgrade to enable speedier, more mobile-friendly content. We decided to re-evaluate our commenting platform to ensure that it meets your expectations and serves as an optimal feedback mechanism. During this redesign, we invite your input on providing feedback on Red Hat documentation via the discussion platform.