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"
    }
}

Response

Last updated

Was this helpful?