Skip to content

Configure Admin REST API

Privacera supports filtering users by domain when syncing users from Entra ID (AAD). When using domain filtering, users will be limited to only those users that match the specified domain.

Setup

Go to the Privacera Manager host and navigate to the Privacera Manager installation directory:

Bash
cd ~/privacera/privacera-manager
vi config/custom-vars/vars.privacera-usersync.yml

Update the following variables with Username and Password to be used for Basic Auth for the REST API. If no value is set, the endpoints will be unavailable.

YAML
1
2
3
#REST API Basic auth details - If no value set, endpoints will be unavailable
PRIVACERA_USERSYNC_API_SECURITY_USER_NAME: ""
PRIVACERA_USERSYNC_API_SECURITY_USER_PASSWORD: ""

Restart Privacera Services

Bash
1
2
3
cd ~/privacera/privacera-manager
./privacera-manager.sh setup
./pm_with_helm.sh upgrade 

Admin REST API Requests

Comments