Authentication
Provides access tokens to be used with requests to our APIs to secure communications with Nibela system.
Endpoints
Get an API access token
Headers
Name
Type
Description
Request Body
Name
Type
Description
curl -X POST 'https://${AUTH_SERVER_URL}/realms/nibela/protocol/openid-connect/token' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'grant_type=client_credentials' \
--data-urlencode 'client_id=${YOUR_CLIENT_ID}' \
--data-urlencode 'client_secret=${YOUR_CLIENT_SECRET}'Last updated