{
"type": "workflow_template",
"id": "template-prospects-to-n8n-automation",
"attributes": {
"name": "Send qualified prospects to n8n Automation",
"description": "Automatically send companies to a n8n automation when they're added to a list.",
"categories": [
"outbound"
],
"workflow_type": "company",
"definition_version": "V1",
"definition": {
"triggers": [
{
"name": "company_added_to_list",
"filters": [
{
"attribute": "list_id",
"op": "eq",
"value": "42"
}
],
"options": {
"type": "list"
}
}
],
"steps": {
"add_to_hot_leads": {
"action_name": "add_organization_to_list",
"options": {
"list_id": "42"
}
},
"notify_sales": {
"action_name": "send_company_to_slack",
"options": {
"channel": "#sales"
}
}
},
"order": {
"trigger": [
"add_to_hot_leads"
],
"add_to_hot_leads": [
"notify_sales"
]
}
},
"variables": {
"trigger_list_id": {
"description": "The list to watch. A company entering it starts the workflow.",
"entity_type": "company_list",
"required": true,
"array": false,
"available_options": null
},
"webhook_url": {
"description": "The n8n webhook the company is posted to.",
"entity_type": "string",
"required": true,
"array": false,
"available_options": null
}
}
}
}