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 (roadmap)

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

Custom template publishing is on the roadmap. The backend supports authoring (the flow_templates table already stores steps_json, category, slug, and is_published) but the UI to export an existing flow to a template is not built yet.