Skip to main content
POST
/
v1
/
oauth
/
revoke
Revoke an OAuth token
curl --request POST \
  --url https://api.leanrails.com/v1/oauth/revoke \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "token": "<string>"
}
'
{
  "revoked": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.fluveo.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use your secret API key as the username with an empty password.

Headers

X-API-Version
string

Override the API version for this request.

Body

application/json
token
string

The token to revoke.

Response

Token revoked.

revoked
boolean
Example:

true