Authorization

Being as identity and access management solution PlusAuth also uses itself for authentication. For using the Api you must have an access token retrieved from PlusAuth. Be aware that access tokens hold your privileges so make sure to keep them safe.

PlusAuth Rest API protected by

OAuth 2.0
and you can access it with Bearer tokens.

API requests that made over HTTP will be redirected to corresponding HTTPS endpoint. Depending on your http client those redirects may fail, so make sure you use HTTPS instead of HTTP.

After configuring your client, you can retrieve tokens by using OAuth 2.0 flows.

Client Configuration

In order to retrieve tokens, firstly, you must create a Client in your tenant's dashboard.

Go to Dashboard > Clients and click to create button. img_1.png

After creating the client, you must authorize PlusAuth permissions to the client. To do so, go to Dashboard > Resources and go to Clients section from details of Management Api. Type in your client's name and click to Authorize.

In the below, you will see a kendo list box. Assign the permissions you need from left to right and click to Save

img_2.png

Retrieve Token with OAuth2 Client Credentials Grant
1
2
3
4
5
6
7
8
Loading...