How to transfer data between scenarios on Make
Transfer data between Make scenarios using webhooks or HTTP modules. Set up a webhook in the receiving scenario, then use HTTP Make a Request module in the sending scenario to pass data.
Prerequisites
- Active Make account
- Basic understanding of Make scenarios
- At least two existing scenarios
- Knowledge of webhooks and HTTP requests
Step-by-Step Instructions
Create a webhook in the receiving scenario
Configure the webhook structure
Set up the sending scenario
POST and paste the webhook URL from step 1 into the URL field.Configure the data payload
Raw and Content type to application/json. In the Request content field, structure your JSON data using variables from previous modules:{
"name": "{{1.name}}",
"email": "{{1.email}}",
"data": "{{2.output}}"
}Add error handling
Test the data transfer
Implement data processing in receiving scenario
Activate and monitor both scenarios
Common Issues & Troubleshooting
Webhook not receiving data
Verify the webhook URL is correct and the sending scenario's HTTP module is configured with POST method. Check if the receiving scenario is active and the webhook module is properly connected.
Data structure mismatch errors
Re-determine the data structure in the webhook module after sending test data. Ensure the JSON payload in the sending scenario matches the expected field names and data types.
HTTP request timing out
Check if the receiving scenario is running and not stuck on a module. Increase the timeout setting in the HTTP module to 300 seconds and verify webhook scenario execution limits aren't exceeded.
Missing or incorrect data mapping
Use Make's variable picker instead of typing field references manually. Verify that the data exists in previous modules by checking execution history and ensure proper JSON formatting in the request payload.