Delete a specific user by login name

delete

/PASService/rest/services/v1/users/{loginName}

Deletes a user.

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

204 Response

This operation deletes a specific user by login name successfully.
Back to Top

Examples

This example describes how to get a particular User by user name. The name is the unique for a User entity.

Example cURL Command

Use the following cURL command to submit a request on the REST resource:

curl -X DELETE \ 
     -H "Accept: application/json" \
     -H "Content-Type: application/json" \
     -u 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \   
     -L "http://server:port/PASService/rest/services/v1/users/User100"
Back to Top