This content is dedicated to our next version. It is work in progress: its content will evolve until the new version is released.

Before that time, it cannot be considered as official.

How to grant permissions to perform requests to Bonita REST API

Learn how to identify and grant the necessary permissions to your users.

When you create an application on Bonita UI Builder that is using Bonita REST API, and when you are pushing this application to production, you need to grant permissions on the API for your users or profiles. It ensures correct access to your production application and its resources by your users.

You need to use the setup tool to update the configuration files in order to apply the changes.

Grant permissions to Bonita REST API

Check out the REST API authorizations page in order to understand more about how the permissions are granted.

Already initialized Bonita Runtime

1. Identify the Bonita APIs used in your application

First, you need to list and identify all the queries that your Bonita UI Builder application is making to Bonita REST API. To do so, open Bonita UI Builder, select your application, and click on the Queries tab, and list all the Bonita API resources that your application is using.

For example, if your application makes a request to the API resource GET /bonita/API/identity/user, you will need to declare the permission for identity/user.

2. Retrieve the permissions mapping

You now need to retrieve the permission mapping that is needed to perform the requests.

To do so, open the resources-permissions-mapping.properties file (located in the folder /bonita/setup/platform_conf/current) and check the mapping for the Bonita API resources you identified in the previous step.

For example, if your application makes a request to the API resource GET /bonita/API/identity/user, the resources-permissions-mapping.properties file maps it as GET|identity/user=[organization_visualization].

3. Declare the permissions

Edit the file custom-permissions-mapping.properties using the mapping in the previous step.

Example:

  • To grant organization_visualization permission (which includes API resources such as /identity/user and many others) to user walter.bates: user|walter.bates=[organization_visualization]

  • To grant organization_management permission to custom profile manager: profile|manager=[organization_management]

It may be more convenient to map permissions to profiles rather than directly to users and map profiles to the organization entities (users, groups roles…​).

4. Push the configuration

With the setup tool, you can now update the permissions configuration in the database using the setup.sh push command.

Initial setup (before first startup)

If your Bonita platform has never been started, you can configure the permissions in the /bonita/setup/platform_conf/initial folder to update the initial configuration.

Default Permissions

Some permissions are already set by default and might fit your needs. You can find the default REST API authorizations in this page.

If dynamic authorizations are defined for the resource, they override the custom permissions for profiles and roles.