User Data Deletion API

You can delete user chat profile with all user data via API.

This API protected by Bearer token and API key from admin panel.

CURL example:

curl -X 'POST' \
  'https://chatbackend.watchers.io/user/external/delete' \
  -H 'accept: application/json' \
  -H 'Content-Type: application/json' \
  -H 'x-api-key: {Api key of project from admin panel}' \
  -H 'Authorization: Bearer {Bearer token from admin panel}' \
  -d '{"userId": "123"}'

What’s Next