EVENTconnection.google_verification_failed
Google verification failed
Event name: connection.google_verification_failed
A Google Business Profile verification reached a terminal failure (suspended, duplicate, or fetch error). In-progress states do not fire. 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
| Name | Type | Required | Description |
|---|---|---|---|
event | string | optional | Dotted event name. |
timestamp | string | optional | ISO-8601 UTC time the event was emitted. |
account_id | integer | optional | Synup account the event belongs to. |
location_id | string | optional | Numeric string for location-scoped events; null for brand-scoped events. |
data | object | optional | |
data.platform | string | optional | Always "google". |
data.connected_account_id | string | optional | Always null for verification events. |
data.failure_type | string | optional | "rejected" (suspended/duplicate) or "transient" (fetch error). |
data.reason | string | optional | Failure message (may be omitted). |
Example delivery
{
"event": "connection.google_verification_failed",
"timestamp": "2026-07-15T14:55:30Z",
"account_id": 11073,
"location_id": "279381",
"data": {
"platform": "google",
"connected_account_id": null,
"failure_type": "rejected",
"reason": "This listing was suspended by Google."
}
}