Revoke OAuth token
documentedRevoke an OAuth access token.
POST /oauth/token/revokeOAuthno implementation yet0 runsNo 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.pinterest.com/v5/oauth/token/revoke" \
-X POST \
-u "{{PINTEREST_API_KEY}}:{{PINTEREST_SECRET}}" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Accept: application/json" \
-d "token={{OAUTH2_ACCESS_TOKEN}}"