Workflow Templates
Get all available Workflow Templates for your workflow.
📖
See the full documentation here.
API
You can get all templates through the API.
This is a GraphQL API so you can fetch as much or as little information as desired from the different queries and mutations.
Queries
getWorkflows > templates > find_many
Use this query to fetch all available templates.
Query
query GetManyTemplates {
getWorkflows {
templates {
find_many {
id
list {
name
description
}
}
}
}
}
Explore all response fields here (opens in a new tab)