# Refresh Token Endpunkt
POST https://auth.doccheck.com/token
# Request (application/x-www-form-urlencoded)
client_id={Client-ID}
client_secret={Client-Secret}
grant_type=refresh_token
refresh_token={Refresh-Token}
# Response
{
"scope": "...",
"token_type": "Bearer",
"expires_in": 3600,
"access_token": "{Access-Token}",
"refresh_token": "{Refresh-Token}"
}