curl --request POST \
--url https://public-api.sessionboard.com/oauth/revoke \
--header 'Content-Type: application/json' \
--data '
{
"token": "<string>",
"token_type_hint": "access_token"
}
'Revoke an access or refresh token. Conforms to RFC 7009. Always returns 200 regardless of whether the token was found.
curl --request POST \
--url https://public-api.sessionboard.com/oauth/revoke \
--header 'Content-Type: application/json' \
--data '
{
"token": "<string>",
"token_type_hint": "access_token"
}
'