Skip to main content

Deletes inactive users

POST 

<your-unleash-url>/api/admin/user-admin/inactive/delete

Deletes all inactive users. An inactive user is a user that has not logged in in the last 180 days

Request

Bodyrequired

idsSchema

    idsnumber[]required

    Ids, for instance userid

    Example: [12,212]

Responses

This response has no body.

Authorization: Authorization

name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API
curl -L '<your-unleash-url>/api/admin/user-admin/inactive/delete' \
-H 'Content-Type: application/json' \
-H 'Authorization: <Authorization>' \
-d '{
"ids": [
12,
212
]
}'
Request Collapse all
Base URL
<your-unleash-url>
Auth
Body required
{
  "ids": [
    12,
    212
  ]
}
ResponseClear

Click the Send API Request button above and see the response here!