POST
/v1/mgmt/user/delete/batch

Delete users, using a valid management key.

This API endpoint will delete users utilizing a valid management key.

See also

Endpoint Authentication

Use authorization bearer header with the following format:

Authorization: Bearer \<ProjectId:ManagementKey\>

Try it

/v1/mgmt/user/delete/batch

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

< Project ID >:< Management Key > as bearer

In: header

Request Body

userIdsarray<string>

Status codeDescription
200OK
curl -X POST "https://api.descope.com/v1/mgmt/user/delete/batch" \
  -d '{
  "userIds": [
    "string"
  ]
}'
Was this helpful?