Skip to main content

Remove platform user

Removes a user from the platform.

Request Body required
    user_id string

    The user id to remove from the the platform.

    serviceuser_id string

    The service user id to remove from the the platform.

Responses

A successful response.


Schema

    object

POST /v1beta1/admin/platform/users/remove

Authorization

name: Basic type: httpdescription: use Client ID as username and Client Secret as passwordin: headerscheme: basic

Request

Base URL
http://127.0.0.1:7400
Security Scheme
Username
Password
Body required
{
"user_id": "string",
"serviceuser_id": "string"
}
curl / cURL
curl -L -X POST 'http://127.0.0.1:7400/v1beta1/admin/platform/users/remove' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"user_id": "string",
"serviceuser_id": "string"
}'