Skip to content
SynupAPI
Get an API key
EVENTsocial_post.boost_active

Boost active

Event name: social_post.boost_active

A boost went live and is actively spending. Scope: brand-scoped (location_id is null). Delivered as a signed HTTP POST to your Webhooks URL.

Every delivery is signed. Verify X-Synup-Signature before processing — see Synup Webhooks.

Payload

NameTypeRequiredDescription
eventstringoptionalDotted event name.
timestampstringoptionalISO-8601 UTC time the event was emitted.
account_idintegeroptionalSynup account the event belongs to.
location_idstringoptionalNumeric string for location-scoped events; null for brand-scoped events.
dataobjectoptional
data.ad_run_idstringoptionalAd-run UUID.
data.is_boostbooleanoptionalAlways true for boost events.
data.boost_statestringoptionalBoost state ("active").
data.post_idstringoptionalBoosted social post UUID.
data.social_profile_idstringoptionalBrand UUID.
data.platformstringoptionalAd platform (e.g. facebook).
Example delivery
{
  "event": "social_post.boost_active",
  "timestamp": "2026-07-15T13:00:00Z",
  "account_id": 11073,
  "location_id": null,
  "data": {
    "ad_run_id": "ar_101",
    "is_boost": true,
    "boost_state": "active",
    "post_id": "7a1c...",
    "social_profile_id": "b2d4...",
    "platform": "facebook"
  }
}