- Backboard SSO
- User Info
Backboard SSO
User Info
GET
/oauth/userinfo
curl --request GET \
--url https://app.backboard.io/api/oauth/userinfo \
--header 'Authorization: Bearer <token>'
curl --request GET \
--url https://app.backboard.io/api/oauth/userinfo \
--header 'Authorization: Bearer <token>'Overview
Returns the authenticated user’s profile from a Bearer access token.
Requires the openid scope. Additional claims depend on granted scopes — see SSO.
Authentication
Authorization: Bearer <access_token>
Claims by scope
| Scope | Claims |
|---|---|
openid | sub (required) |
email | email, email_verified |
profile | name, given_name, family_name, assistant_id |
Unrequested scopes are omitted or null.
Errors
| Status | Cause |
|---|---|
401 | Missing or invalid access token |
403 | Token missing openid scope |
curl --request GET \
--url https://app.backboard.io/api/oauth/userinfo \
--header 'Authorization: Bearer <token>'
curl --request GET \
--url https://app.backboard.io/api/oauth/userinfo \
--header 'Authorization: Bearer <token>'