← Back to dashboard

Connect your automation

Takes about 5 minutes. No code required.
1
Copy webhook URL
2
Configure Make
3
Test the connection
4
Done
1
Copy your webhook URL
This is the URL you will paste into Make
Loading...
2
Configure Make
Add one HTTP module to your existing scenario
1.Open your Make scenario that uses the Calendly trigger
2.Click the + button immediately after the Calendly module
3.Search for HTTP and select "Make a request"
4.Configure the module using the settings below
5.In every downstream module, replace Calendly field references with the HTTP response fields shown below
HTTP MODULE SETTINGS
Make - HTTP module configuration
Method
POST
URL
Body type
Raw
Content type
JSON (application/json)
Body
{{bundle}}
The body field {{bundle}} sends the full Calendly payload automatically. No manual field mapping needed.
DOWNSTREAM FIELD REFERENCES
Before (Calendly trigger)After (validated output)
{{1.name}}{{HTTP.data.name}}
{{1.email}}{{HTTP.data.email}}
{{1.start_time}}{{HTTP.data.start_time}}
{{1.questions_and_answers[]...}}{{HTTP.data.questions_and_answers[]...}}
3
Test the connection
Send a test payload and confirm it reaches the dashboard
Click the button below to send a test payload. If the connection is working, you will see it appear in your execution log on the dashboard.
Need help? The webhook URL accepts any JSON payload. If your automation platform is not Make, point any HTTP POST module at with Content-Type: application/json and send the full payload as the body.