Description
Summary I have a Bubble app where users place orders. When an order is created, I need Bubble to fire a webhook to n8n so the automation side can take over, processing the order, notifying the right people, and writing a record back to Bubble via the Data API. The flow I need working is as follows: a new order gets created in Bubble as a thing in the database. That triggers a Bubble backend workflow that sends the order data to the n8n webhook URL. n8n receives the payload and runs the processing logic. n8n sends an order confirmation email to the customer, then writes the processed order status back to the Bubble record via the Bubble Data API. The record should then update to “processed” automatically. For deliverables, I need the Bubble backend workflow configured to trigger on a new order and POST the data to n8n. I also need an n8n workflow that receives the data, sends the confirmation email, and calls the Bubble Data API to update the record. The Bubble Data API should be properly enabled and authenticated in n8n. The entire workflow should be tested end to end with at least one real order flowing through the complete pipeline. Finally, I need a short written explanation or a Loom walkthrough of what was built. This project does not include payment gateway integration, Bubble frontend changes, creating new data types or fields since we’re working with what’s already there, or integrating any third-party order management tools.