A Zapier zap that, on each new Calendly meeting, creates or updates a contact in your CRM and notifies the sales channel in Slack. Never lose track of a booked call.
{
"version": "1.0",
"platform": "zapier",
"title": "Calendly Booking to CRM + Slack",
"steps": [
{
"id": 1,
"type": "trigger",
"app": "Calendly",
"event": "Invitee Created"
},
{
"id": 2,
"type": "action",
"app": "HubSpot",
"event": "Create or Update Contact",
"config": {
"email": "{{1.email}}",
"firstname": "{{1.name}}"
}
},
{
"id": 3,
"type": "action",
"app": "Slack",
"event": "Send Channel Message",
"config": {
"channel": "#sales",
"message": "New call booked with {{1.name}} at {{1.event_start_time}}"
}
}
]
}