- Prosyo Docs
- Integrations
- Make
On this page
Connect Prosyo to Make (formerly Integromat).
Prosyo → Make: trigger a scenario#
- In Make, create a scenario and add Webhooks → Custom webhook as the trigger.
- Click Add, name it Prosyo, and click Save.
- Copy the webhook URL, for example
https://hook.eu1.make.com/abc123.... - In Prosyo, go to Integrations → Custom webhook, paste the URL into HTTPS endpoint and click Connect. Copy the Signing secret.
- Choose Events, then click Test connection.
- In Make, the webhook module shows Successfully determined and learns the data structure.
- Add a Router with filters on
type, then add your actions.
Verify the signature (optional)#
In the webhook module, open Advanced settings and turn on Get request headers and JSON pass-through. Then add a filter that checks:
sha256(value; "hex"; "YOUR_SIGNING_SECRET") = headers.x-prosyo-signatureHere value is the raw JSON body passed through.
Make → Prosyo: add leads#
- In Prosyo, go to Integrations → Chrome extension & API and click Generate API token.
- In Make, add HTTP → Make a request:
- URL:
https://app.prosyo.com/api/v1/ext/leads - Method: POST
- Headers:
Authorization: Bearer YOUR_TOKEN - Body type: Raw, Content type: JSON
- Request content:
- URL:
{
"listName": "Inbound – Make",
"leads": [
{ "firstName": "{{1.first_name}}", "lastName": "{{1.last_name}}", "email": "{{1.email}}", "companyName": "{{1.company}}" }
]
}Up to 100 leads per request. See the lead fields.
Popular scenarios#
- Reply received → create a HubSpot or Pipedrive task, and ping the owner in Slack
- Stage changed to Meeting → add to Google Sheets and create a Google Calendar prep block
- Facebook Lead Ads → Prosyo list → LinkedIn campaign
Start campaigns automatically#
Go one step further: add the lead and enroll them in a campaign in the same workflow. See Custom triggers for step-by-step recipes, and the API reference for every endpoint.
