Skip to content
SynupAPI
Get an API key
EVENTidea.scheduled_as_post

AI idea scheduled as post

Event name: idea.scheduled_as_post

An idea was linked to a published social post (social only). Scope: social (see the top-level scope field). 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.
scopestringoptionalAI post-idea events only: "local" or "social".
dataobjectoptional
data.idea_idstringoptionalIdea id.
data.social_profile_idstringoptionalBrand/social-profile id.
data.social_post_idstringoptionalThe social post the idea was linked to.
data.series_idstringoptionalContent series id, if any.
Example delivery
{
  "event": "idea.scheduled_as_post",
  "timestamp": "2026-07-15T07:30:00Z",
  "account_id": 19598,
  "location_id": null,
  "scope": "social",
  "data": {
    "idea_id": "idea-90211",
    "social_profile_id": "c81d4e2e-..",
    "social_post_id": "7f3a1c9e-..",
    "series_id": "series-11"
  }
}