QoreAI

Refresh Token

Endpoint: https://stage.qoreai.com/realms/bocore/protocol/openid-connect/token

Method: POST

Payload

type: FormData

ParameterTypeDefaultDescription
client_idstringbocore-appClient ID
refresh_tokenstringRefresh Token
grant_typestringrefresh_tokenRefresh token

Response

Status Code: 200

{
  "access_token": "...",
  "expires_in": 300,
  "refresh_expires_in": 1800,
  "refresh_token": "...",
  "token_type": "Bearer",
  "not-before-policy": 0,
  "session_state": "...",
  "scope": "email profile"
}

Status Code: 401

{
  "error": "",
  "error_description": "Unauthorized"
}