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
- Log in to the Developer Portal.
- Navigate to the OAuth Clients page.
- Click Create Client and provide a name for your integration.
Get Your Credentials
- After creating the client, copy your
Client ID. - Save your
Client Secretsecurely — it is only shown once. - These credentials are used to generate access tokens via the
/oauth/access-tokenendpoint.
Generate an Access Token
- Send a
POSTrequest to/oauth/access-tokenwithgrant_type=client_credentials, yourclient_id, andclient_secret. - All available scopes (
templates:read,assets:read,brandkit:read) are automatically assigned to the token. - Use the returned
access_tokenas a Bearer token in theAuthorizationheader for all API requests.
Start Making API Calls
- Use the access token to call endpoints such as
/api/templates,/api/assets, and/api/folders. - Tokens are valid for 30 days (2,592,000 seconds).
- You can verify your token anytime using the Introspect Token API.