Make
Use Make webhooks to route Salesight call reviews into CRMs and operations tools.
Make scenarios can receive Salesight webhook events with the Custom webhook trigger.
Setup
- Create a new Make scenario.
- Add Webhooks as the first module.
- Choose Custom webhook and create a webhook.
- Copy the generated webhook URL.
- In Salesight, open Integrations, add an outbound webhook, and paste the URL.
- Click Send test.
- In Make, inspect the captured bundle and confirm
data.callReviewfields are available.
Attio Deal Recipe
Recommended module chain:
- Webhooks > Custom webhook
- Attio > Search Records for company or person
- Attio > Create a Record if no record exists
- Attio > Create or Update a Deal
Map these values:
| Attio field | Salesight value |
|---|---|
| Name | data.callReview.customer.name + " - " + data.callReview.company.name |
| Call score | data.callReview.score |
| Summary | data.callReview.summary |
| Objections | join(data.callReview.topObjections; ", ") |
| Coaching flags | join(data.callReview.coachingFlags; ", ") |
| Salesight URL | data.callReview.links.app |
Error Handling
Return a 2xx response from the webhook module after Make has accepted the event. Salesight retries non-2xx responses, so use Make error handlers for downstream CRM failures that should not make Salesight send the same event again.