Use this endpoint to request a new access token by authenticating with a private key JWT.
Request an access token by authenticating with a signed JWT.
200: OK Successful token request. 401: Unauthorized The private key JWT was missing. 400: Bad Request The request format was incorrect. 500: Internal Server Error Internal error in the IdP infrastructure. 429: Too Many Requests To many requests within the rate limit period. 404: Not Found The resource could not be found or the wrong HTTP method was used. 403: Forbidden The private key JWT was invalid.
Copy {
"access_token" : "<ACCESS_TOKEN>" ,
"expires_in" : 3599 ,
"scope" : "<REQUESTED_SOCPE>" ,
"token_type" : "bearer"
}
Copy {
"error" : {
"code" : 401 ,
"status" : "Unauthorized" ,
"request" : "<REQUEST_ID>" ,
"message" : "The request could not be authorized"
}
}
Copy {
"error" :
{
"code" : 500 ,
"status" : "Internal Server Error" ,
"request" : "<REQUEST_ID>" ,
"message" : "An internal server error occurred, please contact the system administrator"
}
}
Copy {
"error" :
{
"code" : 429 ,
"message" : "Slow down" ,
"status" : "Too Many Requests"
}
}
Copy {
"error" : {
"code" : 404 ,
"status" : "Not Found" ,
"request" : "<REQUEST_ID>" ,
"message" : "The requested resource could not be found"
}
}
Copy {
"error" : {
"code" : 403 ,
"status" : "Forbbiden" ,
"request" : "<REQUEST_ID>" ,
"message" : "Forbidden"
}
}
Use this endpoint to renew the access token based on a previously issued access token.
Request a new access token by authenticating with a previously issued access token.
200: OK Successful token renew request . 401: Unauthorized The previously issued access token is invalid or missing. 500: Internal Server Error Internal error in the IdP infrastructure. 403: Forbidden The previously issued access token is not allowed to renew the access token. 429: Too Many Requests To many requests within the rate limit period. 404: Not Found The resource could not be found or the wrong HTTP method was used.
Copy {
"access_token" : "<ACCESS_TOKEN>" ,
"expires_in" : 3599 ,
"scope" : "REQUESTED_SOCPE" ,
"token_type" : "bearer"
}
Copy {
"error" :
{
"code" : 401 ,
"status" : "Unauthorized" ,
"request" : "<REQUEST_ID>" ,
"message" : "The request could not be authorized"
}
}
Copy {
"error" :
{
"code" : 500 ,
"status" : "Internal Server Error" ,
"request" : "<REQUEST_ID>" ,
"message" : "An internal server error occurred, please contact the system administrator"
}
}
Copy {{
"error" : {
"code" : 403 ,
"status" : "Forbbiden" ,
"request" : "<REQUEST_ID>" ,
"message" : "Forbidden"
}
}
Copy {
"error" : {
"code" : 429 ,
"message" : "Slow down" ,
"status" : "Too Many Requests"
}
}
Copy {
"error" : {
"code" : 404 ,
"status" : "Not Found" ,
"request" : "<REQUEST_ID>" ,
"message" : "The requested resource could not be found"
}
}