Calimatic Connect|Documentation
PricingSign In

Flow Templates

Templates are pre-built flows you can clone into your workspace with one click. Instead of wiring up a trigger and a chain of steps from scratch, pick a template that already does what you need and supply the trigger connection.

Browsing templates

The template library lives at /admin/templates. Templates are filtered by category and sorted by clone count so the most popular ones surface first. Each card shows the trigger, the step count, and a short description of what the flow does.

Cloning a template

  1. Open the template detail page.
  2. Pick a trigger connection from your connected providers. The clone will fail if you have no compatible connection.
  3. Optionally rename the cloned flow.
  4. Click Clone. You'll land on the new flow's detail page with the template's steps pre-populated.

API

GET  /connect/v1/flow-templates            # list published templates
GET  /connect/v1/flow-templates/:slug     # one template
POST /connect/v1/flow-templates/:slug/clone
     { "triggerConnectionId": "...", "name": "..." }

Permissions

  • templates.view — browse and read template definitions
  • templates.write — clone templates into your workspace
  • templates.publish — publish your own templates

Plan limits

Template clones are plan-gated. Free tier allows 3 clones per month, Starter 10, Professional and above are unlimited. See Billing for your current allowance.

Publishing your own templates

You can publish any of your flows as a reusable template. On the flow detail page, click the Publish as Template button. By default, published templates are private to your account. You can also request public visibility for community sharing.

POST /connect/v1/flows/:id/publish-as-template
Authorization: Bearer <jwt>

{
  "visibility": "private"   // "private", "public", or "pending_review"
}

The template library shows both public templates and your own private templates. Your templates appear alongside system templates and can be cloned by teammates in the same workspace.