budget-view-finance/src/constants/n8nWorkflowTemplate.ts
gpt-engineer-app[bot] e70444f320 Fix: Display WhatsApp groups and implement n8n workflow creation
- Fixed the display of WhatsApp group cards.
- Implemented the creation of an n8n workflow upon user registration, including API action setup, dynamic data modification, and post-request actions to store workflow ID and webhook URL.
- Instructions provided for the user to paste the JSON body.
2025-06-18 13:09:40 +00:00

29 lines
612 B
TypeScript

// N8N Workflow Template
// TODO: Replace this with your actual workflow template JSON
export const N8N_WORKFLOW_TEMPLATE = {
// COLE SEU JSON TEMPLATE AQUI
// Substitua todo este objeto pelo JSON que funcionou no Postman
// Exemplo:
// {
// "name": "Finance Workflow - rodrigobm10@gmail.com",
// "nodes": [
// {
// "parameters": {
// "path": "rodrigobm10",
// ...
// },
// ...
// }
// ],
// "connections": {},
// "settings": {}
// }
name: "Finance Workflow Template",
nodes: [],
connections: {},
settings: {}
};