Skip to main content

Quick start

To request consent, direct the end-user to the following link:

https://app.enablenow.nl/

Use the following request parameters:

ParameterRequiredDescription
clientRequiredYour client ID
redirect_uriRequiredThe page the end-user is redirected to after completing the flow

An example of the resulting link with the request parameters:

https://app.enablenow.nl/?client=123456789&redirect_uri=https%3A%2F%2Fwww.enablenow.nl%2Fredirect

Response parameters

ParameterRequiredDescription
consent_idRequiredA unique value used to identify this consent result.

2. Retrieve transactions

You can retrieve user's data using standard OAuth 2.0 authentication methods.

Retrieve access token

To retrieve an access token from the EnableNow API you can use standard OAuth Client Credentials flow using:

Use the following parameters:

ParameterValue
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.

Retrieve paged transactions

Using the access token transactions can be retrieved using the transactions endpoint:

https://api.enablenow.nl/cfa/transactions

Use the following request parameters:

ParameterRequiredDescription
consentIdRequiredThe Consent ID (retrieved as parameter from the consent redirect URI)
pageSizeOptional (default 100, maximum 1000)The number of results retrieved per page
pageTokenOptional (default empty)The pagetoken retrieves a specific result page. Leave empty to receive first page.

See the data-access transactions section for details on the response.