Authorize
Authorize
Ask the user permission to access their portal
GET
Authorize
Please note that the base URL for this endpoint is:
https://manage.mijnklantportaal.nlQuery parameters
string
required
ID of your application you got after registering it in the Developer portal.
string
required
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.
string
required
A random string generated by your application to prevent CSRF attacks. This value will be returned
in the redirect back to your application.
string
required
A, with spaces separated, string with the OAuth Scopes you want access to.Example:
customers.read customer.write invoices.readstring
default:"consent"
Can be
consent or login.string
required
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:
string
The Authorization code which you need to exchange for the actual Access and Refresh tokens.
string
The string you set upon request. You have to check if the string matches the one you have set to ensure CSRF protection.
string
The error code.
string
A human-readable description of the error occured.
