1. Backboard SSO
  2. Revoke Token
POST
/oauth/revoke
curl --request POST \
     --url https://app.backboard.io/api/oauth/revoke \
     --header 'X-API-Key: <api-key>' \
     --header 'Content-Type: application/x-www-form-urlencoded' \
     --data '{
  "token": "string",
  "client_id": "string",
  "client_secret": "string",
  "token_type_hint": "string"
}'

​
Overview

Revoke an access or refresh token (RFC 7009).

Content-Type: application/x-www-form-urlencoded

Both client_id and client_secret are required. Revocation cannot be done with PKCE alone.

​
Form fields

FieldRequiredDescription
tokenYesAccess or refresh token to revoke
client_idYesOAuth App Key
client_secretYesOAuth App Secret
token_type_hintNoAccepted for compatibility

​
Response

HTTP 200 with an empty JSON object {} on success.

See SSO for examples.

​
Authorizations

X-API-Key
required
string
API Key authentication

​
Body

application/x-www-form-urlencoded
token
required
string
client_id
required
string
client_secret
required
string
token_type_hint
string