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
}Documentation Index
Fetch the complete documentation index at: https://docs.developers.mijnklantportaal.nl/llms.txt
Use this file to discover all available pages before exploring further.
https://manage.mijnklantportaal.nlrefresh_token.Bearer token you can use for accessing the MijnKlantportaal API.