Skip to main content

User Deletion

This document provides a high level overview of the Bridgekeeper User Deletion API.

  • 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 to api/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.