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
}Refresh an Access Token with the 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
}https://manage.mijnklantportaal.nlrefresh_token.Bearer token you can use for accessing the MijnKlantportaal API.