POST
/v1/mgmt/user/delete

Delete a user, using a valid management key.

This API endpoint will delete a user utilizing a valid management key based on the provided user loginId.

See also

Endpoint Authentication

Use authorization bearer header with the following format:

Authorization: Bearer \<ProjectId:ManagementKey\>

Try it

/v1/mgmt/user/delete

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

< Project ID >:< Management Key > as bearer

In: header

Request Body

loginIdstring

userIdstring

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