Software Secure Workload
Activity Configure

Delete specific user

This endpoint deletes the specified user account.

DELETE /openapi/v1/users/{user_id}

Parameters: The request URL contains the following parameters

Name

Type

Description

user_id

string

ID of the user object being deleted.

Response object: Returns the deleted user object associated with the specified ID.

Sample python code


  user_id = '5ce480db497d4f1ca1fc2b2b'
  resp = restclient.delete('/users/%s' % user_id)