Skip to main content
POST
/
oauth
/
tokens
Refresh token
curl --request POST \
  --url https://manage.mijnklantportaal.nl/oauth/tokens \
  --header 'Content-Type: application/json' \
  --data '{
  "grant_type": "<string>",
  "client_id": "<string>",
  "client_secret": "<string>",
  "refresh_token": "<string>"
}'
{
  "access_token": "<string>",
  "expires_in": 123
}
Please note that the base URL for this endpoint is: https://manage.mijnklantportaal.nl

Body

grant_type
string
required
Type of grant you want generate tokens for. Must be always refresh_token.
client_id
string
required
ID of your application which you got the Authentication Code for.
client_secret
string
required
The secret of your application you got after registering it in the Developer portal.
refresh_token
string
required
The Refresh Token you got the moment you generated the first tokens.

Response

access_token
string
The new Bearer token you can use for accessing the MijnKlantportaal API.
expires_in
integer
Amount of seconds until the given Access Token expires.
I