Skip to content
SynupAPI
Get an API key
EVENTconnection.google_verification_verified

Google verification passed

Event name: connection.google_verification_verified

A location's Google Business Profile passed verification. 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.platformstringoptionalAlways "google".
data.connected_account_idstringoptionalAlways null for verification events.
Example delivery
{
  "event": "connection.google_verification_verified",
  "timestamp": "2026-07-15T14:50:00Z",
  "account_id": 11073,
  "location_id": "279381",
  "data": {
    "platform": "google",
    "connected_account_id": null
  }
}