Cliquify Developer
  1. Authentication
  • Overview
    • Getting started
  • other
    • Integrations
    • Appendix
      • OAuth Scopes
      • Error Responses
    • Templates
      • Get Tags
      • Get Templates
    • User
      • Get Authenticated User
    • Authentication
      • Overview
      • Generate Access Token
        POST
      • Introspect Access Token
        POST
      • Revoke Token
        POST
    • Get Brand Assets
      GET
  • Authentication
    • Overview
    • Token lifecycle
    • OAuth scopes
    • Get an access token
      POST
    • Introspect a token
      POST
    • Revoke a token
      POST
  1. Authentication

Revoke Token

Developing
POST
{{baseUrl}}oauth/revoke
Invalidate an access (or refresh) token immediately. Typically used when a user logs out or you want to terminate a session early.

Request

Header Params

Body Params application/x-www-form-urlencodedRequired

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request POST '{{baseUrl}}oauth/revoke' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'token=ACCESS_TOKEN'
Response Response Example
{
  "revoked": true
}
Modified at 2026-04-08 11:49:55
Previous
Introspect Access Token
Next
Get Brand Assets
Built with