Cliquify Developer
  1. Authentication
  • Overview
    • Get started
  • Authentication
    • Token lifecycle
    • OAuth scopes
    • Get an access token
      POST
    • Introspect a token
      POST
    • Revoke a token
      POST
  • API Reference
    • Templates
      • Tags
        • List brand tags
      • List templates
    • Assets
      • Folders
        • List folder
      • List assets
      • List asset tags
    • Brand Kit
      • List brand kit
      • List brand kit logos
      • List brand kit colors
    • Troubleshoot
      • Errors and troubleshooting
  1. Authentication

Revoke a token

Developing
POST
https://oauth.cliquify.me/oauth/revoke
Use token revocation when you want to invalidate an access token before it expires.

Request

Header Params

Body Params application/jsonRequired

Examples

Responses

🟢200Success
application/json
Bodyapplication/json

🟠422Token not found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://oauth.cliquify.me/oauth/revoke' \
--header 'Content-Type: application/json' \
--data '{"token":"YOUR_ACCESS_TOKEN"}'
Response Response Example
200 - Success
{
  "success": true,
  "message": "Token successfully revoked.",
  "data": null
}
Modified at 2026-04-09 15:28:26
Previous
Introspect a token
Next
API Reference
Built with