Skip to content

Location Event
Webhook

Request

Sent when a location is created, updated, or deleted.

Bodyapplication/jsonrequired
company_idintegerrequired

Location ID where the event occurred.

resourcestringrequired

Resource type.

Value:"salon"
resource_idintegerrequired

ID of the resource that was created, updated, or deleted.

statusstringrequired

Type of change that occurred.

Enum:"create""update""delete"
dataobject(Webhook Salon Data)required

Location data sent in webhook notifications. Corresponds to the output of the location detail API. Contains comprehensive location information.

Payload
{ "company_id": 123456, "resource": "salon", "resource_id": 123456, "status": "update", "data": { "id": 123456, "title": "Beauty Studio", "public_title": "Beauty Studio", "active": 1, "phone": "+1234567890", "city": "New York", "address": "123 Main St", "timezone_name": "America/New_York" } }

Responses

Your server should return any 2xx status code to acknowledge receipt.