- 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.
29 lines
612 B
TypeScript
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: {}
|
|
};
|