Run in Apidog
Event name: profile.deletedA location was archived (soft delete; there is no hard delete). Scope: location-scoped. Delivered as a signed HTTP POST to your Webhooks URL.
Request Body Params application/json
{
"event" : "profile.deleted" ,
"timestamp" : "2026-07-15T10:20:44Z" ,
"account_id" : 11073 ,
"location_id" : "901234" ,
"data" : {
"source" : "user"
}
} Request Code Samples
curl --location 'https://your-api-server.com' \
--header 'X-Synup-Signature: sha256=Base64Signature==' \
--header 'Content-Type: application/json' \
--data '{
"event": "profile.deleted",
"timestamp": "2026-07-15T10:20:44Z",
"account_id": 11073,
"location_id": "901234",
"data": {
"source": "user"
}
}' 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