Run in Apidog
Event name: social_post.publishedA social post was published to its platforms. Scope: brand-scoped (location_id is null). Delivered as a signed HTTP POST to your Webhooks URL.
Request Body Params application/json
{
"event" : "social_post.published" ,
"timestamp" : "2026-07-15T12:00:05Z" ,
"account_id" : 11073 ,
"location_id" : null ,
"data" : {
"post_id" : "7a1c..." ,
"social_profile_id" : "b2d4..." ,
"status" : "published" ,
"published_on" : "2026-07-15T12:00:00Z" ,
"items" : [
{
"platform" : "facebook" ,
"social_platform_id" : "f-123" ,
"connected_account_id" : "c-9" ,
"published_url" : "https://facebook.com/p/xyz" ,
"vendor_post_id" : "vp_88" ,
"status" : "published"
}
]
}
} Request Code Samples
curl --location 'https://your-api-server.com' \
--header 'X-Synup-Signature: sha256=Base64Signature==' \
--header 'Content-Type: application/json' \
--data '{
"event": "social_post.published",
"timestamp": "2026-07-15T12:00:05Z",
"account_id": 11073,
"location_id": null,
"data": {
"post_id": "7a1c...",
"social_profile_id": "b2d4...",
"status": "published",
"published_on": "2026-07-15T12:00:00Z",
"items": [
{
"platform": "facebook",
"social_platform_id": "f-123",
"connected_account_id": "c-9",
"published_url": "https://facebook.com/p/xyz",
"vendor_post_id": "vp_88",
"status": "published"
}
]
}
}' 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