Detach User Policy
POST /iam?Action=DetachUserPolicy
Remove the specified managed policy attached to the specified user.
Query Parameters
PolicyArn | Arn of the policy to remove. |
UserName | Username of the user to remove the policy. |
Required Roles
This call has no restrictions.
Request Payload
No Request Payload
Response Body
Field |
Description |
Type |
Notes |
DetachUserPolicyResponse |
|
|
|
ResponseMetadata |
|
|
|
RequestId |
|
String |
|
Examples
Request
POST https://192.168.0.0:4443/iam?UserName=tt1&PolicyArn=urn:ecs:iam:::policy/ECSS3FullAccess&Action=DetachUserPolicy
Accept: application/xml
X-SDS-AUTH-TOKEN: <AUTH_TOKEN>
x-emc-namespace: <namespace>
Response
HTTP/1.1 200 OK
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ns2:DetachUserPolicyResponse xmlns:ns2="none">
<ResponseMetadata>
<RequestId>0af9f5b8:17178fe9282:983a:21</RequestId>
</ResponseMetadata>
</ns2:DetachUserPolicyResponse>
Request
POST https://192.168.0.0:4443/iam?UserName=tt1&PolicyArn=urn:ecs:iam:::policy/ECSS3FullAccess&Action=DetachUserPolicy
Accept: application/json
X-SDS-AUTH-TOKEN: <AUTH_TOKEN>
x-emc-namespace: <namespace>
Response
HTTP/1.1 200 OK
{
"ResponseMetadata": {
"RequestId": "0af9f5b8:17178fe9282:cb03:3b"
}
}
Request
curl -H $token -H "Content-Type: application/xml" -H "x-emc-namespace: <namespace>" -X POST https://$nodeIp:4443/iam?UserName=tt1&PolicyArn=urn
Response
HTTP/1.1 200 OK
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ns2:DetachUserPolicyResponse xmlns:ns2="none">
<ResponseMetadata>
<RequestId>0af9f5b8:17178fe9282:983a:21</RequestId>
</ResponseMetadata>
</ns2:DetachUserPolicyResponse>