Skip to content
SynupAPI
Get an API key
EVENTsocial_post.created

Social post created

Event name: social_post.created

A social post was created (draft or scheduled) in Synup. 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.post_idstringoptionalSocial post UUID.
data.social_profile_idstringoptionalBrand / social profile UUID.
data.statusstringoptionalPost status (e.g. draft, scheduled).
data.created_bystringoptionalOrigin: "user", "api", "automation".
data.platform_idsarray of stringoptionalTarget platform identifiers for this post.
Example delivery
{
  "event": "social_post.created",
  "timestamp": "2026-07-15T11:00:00Z",
  "account_id": 11073,
  "location_id": null,
  "data": {
    "post_id": "7a1c...",
    "social_profile_id": "b2d4...",
    "status": "scheduled",
    "created_by": "user",
    "platform_ids": [
      "facebook",
      "instagram"
    ]
  }
}