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
| Name | Type | Required | Description |
|---|---|---|---|
event | string | optional | Dotted event name. |
timestamp | string | optional | ISO-8601 UTC time the event was emitted. |
account_id | integer | optional | Synup account the event belongs to. |
location_id | string | optional | Numeric string for location-scoped events; null for brand-scoped events. |
scope | string | optional | AI post-idea events only: "local" or "social". |
data | object | optional | |
data.idea_id | string | optional | Idea id. |
data.social_profile_id | string | optional | Brand/social-profile id. |
data.social_post_id | string | optional | The social post the idea was linked to. |
data.series_id | string | optional | Content 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"
}
}