Run in Apidog
Event name: social_post.rejectedA social post was rejected in an approval workflow. 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.rejected" ,
"timestamp" : "2026-07-15T11:15:00Z" ,
"account_id" : 11073 ,
"location_id" : null ,
"data" : {
"post_id" : "7a1c..." ,
"social_profile_id" : "b2d4..." ,
"status" : "rejected" ,
"rejection_reason" : "Off-brand imagery"
}
} 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.rejected",
"timestamp": "2026-07-15T11:15:00Z",
"account_id": 11073,
"location_id": null,
"data": {
"post_id": "7a1c...",
"social_profile_id": "b2d4...",
"status": "rejected",
"rejection_reason": "Off-brand imagery"
}
}' 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