Delete a specific security group for a user by login name and security group name

delete

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

Deletes a specific security group for a user.

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

204 Response

This operation deletes a specific spcific security group for a user by login name and security group name successfully.
Back to Top

Examples

This example describes how to get security group(s) for a specific user.

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/qatester3/securityGroups/International Super"
Back to Top