Hi @tzana, welcome to the community! I am sorry you’re having trouble, let’s take a look at what’s happening here.
Is there a chance on of the nodes in your workflow is not returning any results? A workflow execution would stop in this case. You can override the behaviour in the node options under “Always Output Data”:
This could be because you are connecting two separate branches to your HTTP Request node. So n8n might try to read the intervention field from the top branch rather than the one from your Set node in the lower branch.
To avoid this you might want to build a sequential workflow with a single branch instead of having parallel branches, like so:
Login to Dolibarr → Notion → Set → HTTP Request node
In your HTTP Request node you can still read data from your initial “Login to Dolibarr” node as needed using a suitable expression.
Hope this helps getting started! Let me know if you run into any trouble with this