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
@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);