Authentification
This endpoint allows you to authenticate and get your id_token to use the web services.
Get "id_token" (Authorization)
Headers
Name
Type
Description
Request Body
Name
Type
Description
{
"id_token": string,
"access_token": string,
"expires_in": number,
"token_type": string
}{
"error": "invalid_grant"
}Response fields
{
"id_token": "your id_token",
"access_token": "your access_token",
"expires_in": 3600,
"token_type": "Bearer"
}"id_token"
"access_token"
"expire_in"
"token_type"
Last updated