Authentication
Retrieving access token
To retrieve an access token from the EnableNow API you can use standard OAuth Client Credentials flow using:
- URL: https://api.enablenow.nl/cfa/connect/token
- Method:
POST
- Content-Type:
application/x-www-form-urlencoded
- Response Type:
json
Use the following parameters:
Parameter
Value
client_id
[Your Client ID]
client_secret
[Your Client Secret]
scope
"customer-api"
grant_type
"client_credentials"
The generated access token will be valid for 60 minutes.