From 83eecdb90aed9f71c3e448805d8d0ae1dc094ea5 Mon Sep 17 00:00:00 2001 From: Jonathan Bennetts Date: Thu, 6 Apr 2023 12:05:36 +0100 Subject: [PATCH] Fix typo in L2 workflow 2 --- docs/courses/level-two/chapter-5/chapter-5.2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/courses/level-two/chapter-5/chapter-5.2.md b/docs/courses/level-two/chapter-5/chapter-5.2.md index 9ce161c9b..bfb1e9902 100644 --- a/docs/courses/level-two/chapter-5/chapter-5.2.md +++ b/docs/courses/level-two/chapter-5/chapter-5.2.md @@ -40,7 +40,7 @@ The second part of the workflow consists of five nodes: 1. Use the [IF node](/integrations/builtin/core-nodes/n8n-nodes-base.if/){:target="_blank" .external} to filter order from the region Americas. 2. Use the [Move Binary Data node](/integrations/builtin/core-nodes/n8n-nodes-base.movebinarydata/){:target="_blank" .external} to transform the incoming data from JSON to binary format. Note that you need to convert all data. -3. Use the [Write Binary File node](/integrations/builtin/core-nodes/n8n-nodes-base.writebinaryfile/){:target="_blank" .external} to create and store files with the orders information. In the File Name field, use an expression to include the oder id in the file name, like this: `report_orderID{oder_id}.json` (you need to replace the `{order id}` with the reference the Move Binary Data node). +3. Use the [Write Binary File node](/integrations/builtin/core-nodes/n8n-nodes-base.writebinaryfile/){:target="_blank" .external} to create and store files with the orders information. In the File Name field, use an expression to include the order id in the file name, like this: `report_orderID{order_id}.json` (you need to replace the `{order id}` with the reference the Move Binary Data node). 4. Use the [Gmail node](/integrations/builtin/app-nodes/n8n-nodes-base.gmail/){:target="_blank" .external} (or another email node) to send the files via email to an address you have access to. Note that you need to add an attachment with the data property. 5. Use the [Discord node](/integrations/builtin/app-nodes/n8n-nodes-base.discord/){:target="_blank" .external} to send a message in the n8n Discord channel `#course-level-two`. In the node, configure the following parameters: * Webhook URL: The webhook URL you received in the email when you signed up for this course.