Webhook Setup

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.

  1. Custom webhook — receives post.scheduled.
  2. (optional) Filter / approval — Slack message, email, or Notion update for human review.
  3. LinkedIn → Create a Share Update on a Company Page — uses text, media, and companyId from the payload.
  4. HTTP → Make a request — POST back to make-post-callback with 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