Run in Apidog
Event name: profile.updatedAn existing location's details were edited. Debounced to at most one delivery per location per 60 seconds. Scope: location-scoped. Delivered as a signed HTTP POST to your Webhooks URL.
Request Body Params application/json
{
"event" : "profile.updated" ,
"timestamp" : "2026-07-15T10:06:12Z" ,
"account_id" : 11073 ,
"location_id" : "901234" ,
"data" : {
"source" : "user" ,
"changed_fields" : [
"name" ,
"phone"
]
}
} Request Code Samples
curl --location 'https://your-api-server.com' \
--header 'X-Synup-Signature: sha256=Base64Signature==' \
--header 'Content-Type: application/json' \
--data '{
"event": "profile.updated",
"timestamp": "2026-07-15T10:06:12Z",
"account_id": 11073,
"location_id": "901234",
"data": {
"source": "user",
"changed_fields": [
"name",
"phone"
]
}
}' Responses Your endpoint acknowledges receipt with any 2xx. A non-2xx response or a timeout (>10s) is treated as a failed delivery.
Modified at 2026-07-15 18:04:40