Cliquify Developer
  1. Templates
  • Overview
    • Get started
  • Authentication
    • Token lifecycle
    • OAuth scopes
    • Get an access token
      POST
    • Introspect a token
      POST
    • Revoke a token
      POST
  • API Reference
    • Templates
      • Tags
        • List brand tags
      • List templates
        GET
    • Assets
      • Folders
        • List folder
      • List assets
      • List asset tags
    • Brand Kit
      • List brand kit
      • List brand kit logos
      • List brand kit colors
    • Troubleshoot
      • Errors and troubleshooting
  1. Templates

List templates

Developing
GET
https://oauth.cliquify.me/api/templates
List enterprise templates for the company linked to your OAuth client.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params

Responses

🟢200Success
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://oauth.cliquify.me/api/templates?search=&sort_by=&per_page=25&page=1' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
  "success": true,
  "message": "",
  "data": {
    "current_page": 1,
    "data": [
      {
        "id": 101,
        "name": "Onboarding Deck",
        "status": "active",
        "created_at": "2025-02-01 10:00:00",
        "updated_at": "2025-02-01 11:00:00"
      }
    ],
    "per_page": 25,
    "total": 1,
    "last_page": 1
  }
}
Modified at 2026-04-10 10:12:14
Previous
List brand tags
Next
List folder
Built with