For the complete documentation index, see llms.txt. This page is also available as Markdown.

User Deletion API

API for deleted user

Overview

The User Deletion API allows authorized users to delete a user from the system. This API requires the user ID of the user to be deleted and is accessible via an HTTP POST request.

Delete a user

POST /api/user/v1/delete

Headers

Name
Value

Content-Type*

application/json

Authorization*

Bearer <token>

X-Authenticated-User-token*

<keycloak-access-token>

Body

{
    "request": {
        "userId": "user id to be deleted"
    }
}
Name
Type
Description

userId*

string

User id of the user to be deleted

Response

Last updated

Was this helpful?