Cliquify
Creating Integrations

How to create and configure an integration.

To get started integrating with Cliquify, you must register and configure an OAuth integration from the Developer Portal. Your developer account must be active and verified before creating an integration. This integration uses the Client Credentials Grant for server-to-server communication — no user interaction or redirect URLs are required.

Create an Integration
  1. Log in to the Developer Portal.
  2. Navigate to the OAuth Clients page.
  3. Click Create Client and provide a name for your integration.
Get Your Credentials
  1. After creating the client, copy your Client ID.
  2. Save your Client Secret securely — it is only shown once.
  3. These credentials are used to generate access tokens via the /oauth/access-token endpoint.
Generate an Access Token
  1. Send a POST request to /oauth/access-token with grant_type=client_credentials, your client_id, and client_secret.
  2. All available scopes (templates:read, assets:read, brandkit:read) are automatically assigned to the token.
  3. Use the returned access_token as a Bearer token in the Authorization header for all API requests.
Start Making API Calls
  1. Use the access token to call endpoints such as /api/templates, /api/assets, and /api/folders.
  2. Tokens are valid for 30 days (2,592,000 seconds).
  3. You can verify your token anytime using the Introspect Token API.