Regarding camunda pro version

Hi Team,

Please help me if we have any pro version which support other roles excluding camunda admin role.
I was looking for pro version than the comunity version of Camunda . If we have paid version of camunda then can we have custom role with different permission

Regards,
Nagraj

@nagraj, Identity service and Authorization service works same for both community and enterprise versions.

You can create additional users and groups using and can assign the permission to the either user level or group level. You can assign different resources and permissions to the user

AuthorizationEntity authorizationEntity = new AuthorizationEntity(Authorization.AUTH_TYPE_GRANT);

authorizationEntity.setGroupId("myCustomRoleName");

authorizationEntity.setResource(resource);

authorizationEntity.setResourceId(Authorization.ANY);

authorizationEntity.addPermission(Permissions.ALL);

authorizationService.saveAuthorization(authorizationEntity);

(or) from Camunda webapps (admin) you can create the users and groups.
https://docs.camunda.org/manual/7.13/webapps/admin/

https://docs.camunda.org/manual/7.13/user-guide/process-engine/authorization-service/#java-api-example

https://docs.camunda.org/manual/7.13/user-guide/process-engine/identity-service/