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

Getting started

This guide shows the fastest way to make your first successful API call.

Prerequisites#

A Cliquify deployment URL
A developer account with access to the OAuth client portal
A secure backend or server environment to store your client secret

Step 1: Create an OAuth client#

Create an OAuth client in the developer portal and copy the generated Client ID and Client Secret.
See Create an OAuth client.

Step 2: Request an access token#

Send your credentials to one of these endpoints:
POST /api/get-access-token
POST /oauth/access-token
Example:
Example success response:
{
  "success": true,
  "token": {
    "token_type": "Bearer",
    "expires_in": 31536000,
    "access_token": "YOUR_ACCESS_TOKEN"
  }
}

Step 3: Call a protected endpoint#

Step 4: Handle common failures#

401 Unauthorized: missing, invalid, or expired token
403 Forbidden: token does not include required scopes
429 Too Many Requests: rate limit exceeded
See Errors for details.
Modified at 2026-04-09 07:00:30
Next
Integrations
Built with