QoreAI

Authenticate

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

Method: POST

Payload

type: FormData

ParameterTypeDefaultDescription
client_idstringbocore-appClient ID
usernamestring
passwordstring
grant_typestringpassword

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"
}