Hi! First thanks for the awesome tool, i really have fun
I’m stuck in some workflows so i’m coming out… I’ve searched in the forum and the existing workflows, but couldn’t find anything similar - if there is, please let me know. If not, I’d be glad to share the workflows when i’m done!
What i want to achieve
Create a list in a newsletter app (Sendinblue, Mailjet, Mailchimp), import contacts in this list and automatically update it every day.
Where i’m stuck
Saving the list ID for next executions.
What i did so far
I’m going to take the example of Sendinblue.
I create a list in Sendinblue, which gives me a list ID, then I can import my client’s mails in the Sendinblue list thanks to the list ID. This part works well.
What i need
I would like to keep this list ID in memory, for when the update is done automatically, the list ID is passed in the request with the new contacts. Ideally, it would be as if the list ID was “pinned” after the node “2. Sendinblue - Create a contact list”.
So when the Cron task is launched, it would directly get the list ID without relaunching the first part of the workflow.
But i don’t think it’s possible, isn’t it? It would be like an equivalent of pinning the data for tests, except that it would be a pin between executions.
Another way would be to save the list ID and repeat the 2nd part of the workflow:
I’ve read some discussions pointing to the different ways to save data. I think it’s too much to save the list Id on another app or db or file.
So the only way would be to save as a static data I guess… But in the doc it’s said that "The workflow must be active and called by a trigger or webhook to save static data. " → in my case, the workflow is launched manually the 1st time. It won’t work, will it?
I also feel like i might be missing something very simple
The workaround I have for now, is just copying the list ID, and pasting it in the next node for next executions. But as this worfklow would be configured by people not familiar with n8n, i would like to make the thing easiest as possible for them.
Any help would be greatly appreciated Thanks a lot in advance