User Deletion
This document provides a high level overview of the Bridgekeeper User Deletion API.
Delete user details using a valid qt-auth cookie.
- When the user logs into an application via form login, social login, sso Bridgekeeper set an auth cookie called
qt-auth
. - Once the
qt-auth
is procured we can initiate a DELETE call toapi/auth/v1/users/me
- After deleting the user details, the API returns a 200 status followed by the message user deleted successfully.
Usage
Sample CURL
curl --location --request DELETE 'https://<publisher-website-url>/api/auth/v1/users/me' \
-H 'Cookie: tfa-auth=<tfa-auth> || qt-auth=<jwt>' \
Refer to Swagger API docs for more info on API usage.