Authorization: Bearer ********************
curl --location --request POST 'https://api.cirqll.nl/oauth/token/refresh' \
--header 'Accept: application/json' \
--data-urlencode 'grant_type=authorization_code' \
--data-urlencode 'client_id=client-id' \
--data-urlencode 'client_secret=client-secret' \
--data-urlencode 'redirect_uri=http://third-party-app.com/callback' \
--data-urlencode 'code=example-auth-code'
{
"access_token": "string",
"refresh_token": "string",
"expires_in": 0
}