Make.com — webhook setup
Trigger
Module: Webhooks → Custom webhook.
ProPresence calls your URL with POST and a JSON payload (see Payload reference) when a brand post is scheduled. The trigger event is always post.scheduled — filter on it if your scenario also handles other events.
Recommended scenario shape
- Custom webhook — receives
post.scheduled. - (optional) Filter / approval — Slack message, email, or Notion update for human review.
- LinkedIn → Create a Share Update on a Company Page — uses
text,media, andcompanyIdfrom the payload. - HTTP → Make a request — POST back to
make-post-callbackwith the LinkedIn URN and live URL.
Filter
Set the trigger filter to event = "post.scheduled" to avoid double-publishing on post.updated.
Status tracking
Failures should be visible. Add a Router with an error path that posts to Slack or pings your monitoring; otherwise a broken LinkedIn auth inside Make is silent from the user’s side.
Related: Payload reference, Post callback, Status tracking