Sign in

Revoke OAuth access token

documented

Revoke an existing OAuth access token.

POST /oauth/revokeOAuthno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.rightsignature.com/oauth/revoke" \
  -X POST \
  -H "Accept: application/json" \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -u '{{RIGHTSIGNATURE_CLIENT_ID}}:{{RIGHTSIGNATURE_CLIENT_SECRET}}' \
  -d 'token={{$token}}'