Skip to main content

List Workflow Templates

GET 

/api/automation/workflow-templates

Returns all official workflow templates, ordered for the template gallery.

Response: 200 OK — wrapped in {data: [...]}, NOT a paginator. The list is expected to be small (a handful of official templates).

Response shape:

{
"data": [
{
"slug": "import-products-csv-upload",
"name": "Import Products from CSV Upload",
"description": "User drops a CSV through the workflow webhook...",
"category": "imports",
"thumbnailPath": null,
"isOfficial": true,
"version": 1,
"parameterPrompts": [
{
"key": "allowedExtensions",
"path": "nodes.0.data.allowedExtensions",
"label": "Allowed file extensions",
"type": "string",
"required": false,
"default": "csv",
"help_text": "Comma-separated list of file extensions to accept (e.g. csv,tsv)"
}
],
"requiredCredentials": [],
"nodeCount": 4,
"updatedAt": "2026-04-16T12:34:56+00:00"
}
]
}

Route name: automation.templates.index

Request

Responses

Successful response