Skip to content
SynupAPI
Get an API key
EVENTconnection.location_connected

Listing connected

Event name: connection.location_connected

A Google or Facebook listing is newly linked to a location. Scope: location-scoped. 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.platformstringoptional"google" or "facebook".
data.connected_account_idstringoptionalUUID of the connected account that was linked.
Example delivery
{
  "event": "connection.location_connected",
  "timestamp": "2026-07-15T14:32:10Z",
  "account_id": 11073,
  "location_id": "279381",
  "data": {
    "platform": "google",
    "connected_account_id": "ba03bc4b-9f8c-4d3b-8e93-9628034c63cc"
  }
}