Hello - I have a workflow setup which will run every hour, get a JSON from an HTTP request and send out a Telegram message with the results in the JSON. So far so good except the JSON request has multiple nodes in it (can be 1, can be dozens depending on how much content is in it that moment).
I would like to send a separate Telegram message for EACH node. How is this possible?
Hey @n8n_rookie, thanks for the additional info. If I understand correctly, this should do what you need. FYI, the “Limit” node is just so that I’m not hammering the webhook.site endpoint with requests, but you can remove it to get access to the full 49 items in the result. And obviously you’ll need to change the last HTTP Request to use the Telegram node instead. But this should get you started.
@cleveradmin you rock!!! Thank you for the solution, I am looking forward to trying this out! I didnt know about the split + limit… I was using HTTP instead of Get Data too.