Skip to main content
Question

Missing patient.deleted event

  • October 8, 2025
  • 1 reply
  • 25 views

Forum|alt.badge.img+2

Hi all,

On the webhooks view, inside the sandbox env, the patient.deleted event seems to be missing.
The api documentation is mentioning the existence of this event tough. Dentally API


Would this be a documentation issue?
Thanks in advance
 

1 reply

Saymon
Community Manager
Forum|alt.badge.img+14
  • Community Manager
  • 280 replies
  • October 9, 2025

Hi ​@jmalfait,

Good spot! I guess it is a documentation issue, yes. I’ve asked the team for more details as the docs do include a patient.deleted webhook event, even if the sandbox UI checkbox only shows patient.created / patient.updated. Basically, it’s still supported, you can create the subscription via the API and include patient.deleted in the events list. 

 

curl -X POST https://api.sandbox.dentally.co/v1/webhooks \
-H "Content-Type: application/json" -H "Authorization: Bearer <TOKEN>" \
-d '{
"webhook": {
"active": true,
"name": "Patient events",
"url": "https://your.endpoint/webhooks",
"events": ["patient.created","patient.updated","patient.deleted"]
}
}'

I’ll update this thread when I find out more, for now creating it via API is the quickest path 😊