|
Either via UI or API, is there a way to delete a contact? |
Replies: 1 comment 3 replies
|
There does not appear to be an exposed contact-delete action in the current contact handlers. The contact path supports listing/getting contacts, updating contact fields, adding/deleting contact notes, and toggling the contact's enabled/blocked state. I do not see a matching UI/API route for deleting the contact record itself. For now, use block/disable if the goal is to stop interaction with that contact. If you need removal for cleanup or privacy reasons, I would open a feature request and spell out what should happen to related conversations, messages, notes, and history: hard-delete, anonymize, or keep them with a deleted-contact placeholder. I would avoid direct database deletion unless you have checked those relationship/history effects. |
There does not appear to be an exposed contact-delete action in the current contact handlers.
The contact path supports listing/getting contacts, updating contact fields, adding/deleting contact notes, and toggling the contact's enabled/blocked state. I do not see a matching UI/API route for deleting the contact record itself.
For now, use block/disable if the goal is to stop interaction with that contact. If you need removal for cleanup or privacy reasons, I would open a feature request and spell out what should happen to related conversations, messages, notes, and history: hard-delete, anonymize, or keep them with a deleted-contact placeholder.
I would avoid direct database deletion unl…