Skip to content
SynupAPI
Get an API key
EVENTprofile.created

Location created

Event name: profile.created

A new business location was created (customer-initiated only). 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.sourcestringoptionalWho created it: "user", "api", or "bulk_edit".
Example delivery
{
  "event": "profile.created",
  "timestamp": "2026-07-15T10:04:00Z",
  "account_id": 11073,
  "location_id": "901234",
  "data": {
    "source": "user"
  }
}