Please note that the base URL for this endpoint is:
https://manage.mijnklantportaal.nl
Query parameters
ID of your application you got after registering it in the Developer portal.
The URL where the user should be send to after accepting or declining the permission request.
The URL must be registered with your application in the Developer portal.
A random string generated by your application to prevent CSRF attacks. This value will be returned
in the redirect back to your application.
A, with spaces separated, string with the OAuth Scopes you want access to.Example:
customers.read customer.write invoices.read
Can be
consent
or login
.The type of response you want to return. This should always be
code
.Response
The user decides to accept or reject your request. After that, we send the user back to yourredirect_uri
and include
some information for your application. We add some query parameters to your URL:
In case of an approval:
The Authorization code which you need to exchange for the actual Access and Refresh tokens.
This code is valid for just a short amount of time. Exchange it as soon as you get it.
The string you set upon request. You have to check if the string matches the one you have set to ensure CSRF protection.
The error code.
A human-readable description of the error occured.