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.Step 2: Request an access token#
Send your credentials to one of these endpoints:POST /api/get-access-token
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
Modified at 2026-04-09 07:00:30