get_template
Retrieve and export complete workflow JSON by template ID for immediate import into n8n. Use IDs from list_node_templates or search_templates to ensure accurate workflow retrieval.
Instructions
Get complete workflow JSON by ID. Ready to import. IDs from list_node_templates or search_templates.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
templateId | Yes | The template ID to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"templateId": {
"description": "The template ID to retrieve",
"type": "number"
}
},
"required": [
"templateId"
],
"type": "object"
}