Make Post Callback

make-post-callback

Purpose: After your Make.com scenario successfully posts to LinkedIn, call this endpoint to mark the post as Published in ProPresence and store the live URL.

Without this callback, the post stays in Scheduled state forever even after it’s live.

Auth: X-API-Key (preferred). The key must have posts:publish scope.

Endpoint:

POST https://<project>.supabase.co/functions/v1/make-post-callback

Body (JSON):

{
  "post_id": "uuid-of-the-post",
  "linkedin_post_id": "urn:li:share:...",
  "live_url": "https://www.linkedin.com/feed/update/urn:li:share:..."
}

Response: 200 OK with the updated post record. 403 if the key lacks posts:publish.

See Make.com → Post callback for the full Make scenario configuration.