Skip to content
SynupAPI
Get an API key
EVENTsocial_post.rejected

Social post rejected

Event name: social_post.rejected

A 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.

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.
dataobjectoptional
data.post_idstringoptionalSocial post UUID.
data.social_profile_idstringoptionalBrand UUID.
data.statusstringoptionalPost status.
data.rejection_reasonstringoptionalWhy the post was rejected.
Example delivery
{
  "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"
  }
}