AI idea scheduled as post
Run in Apidog
Event name: idea.scheduled_as_postAn 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.
Request Body Params application/json
{
"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"
}
} Request Code Samples
curl --location 'https://your-api-server.com' \
--header 'X-Synup-Signature: sha256=Base64Signature==' \
--header 'Content-Type: application/json' \
--data '{
"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"
}
}' Responses Your endpoint acknowledges receipt with any 2xx. A non-2xx response or a timeout (>10s) is treated as a failed delivery.
Modified at 2026-07-15 18:04:40