Skip to content
SynupAPI
Get an API key
EVENTsocial_connection.archived

Social channel archived

Event name: social_connection.archived

A social channel connection was archived. 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.social_profile_idstringoptionalBrand UUID.
data.connected_account_idstringoptionalConnected account UUID.
data.platformstringoptionalPlatform.
data.display_namestringoptionalChannel display name.
data.reasonstringoptionalArchive reason.
Example delivery
{
  "event": "social_connection.archived",
  "timestamp": "2026-07-15T10:20:00Z",
  "account_id": 11073,
  "location_id": null,
  "data": {
    "social_profile_id": "b2d4...",
    "connected_account_id": "c-9",
    "platform": "facebook",
    "display_name": "Acme Coffee",
    "reason": "Credentials revoked"
  }
}