Remove an ACS User from a User Identity
Remove a specified ACS user from a specified user identity
Removes a specified ACS user from a specified user identity.
Removes a specified access system user from a specified user identity.
Authorizations
Body
user_identity_idstring · uuidRequired
ID of the user identity from which you want to remove an access system user.
acs_user_idstring · uuidRequired
ID of the access system user that you want to remove from the user identity..
Responses
200
OK
application/json
400
Bad Request
401
Unauthorized
post
/user_identities/remove_acs_userPOST /user_identities/remove_acs_user HTTP/1.1
Host: connect.getseam.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 112
{
"user_identity_id": "123e4567-e89b-12d3-a456-426614174000",
"acs_user_id": "123e4567-e89b-12d3-a456-426614174000"
}{
"ok": true
}Request
Specify the desired user identity and ACS user by including the corresponding user_identity_id and acs_user_id in the request body.
Request Body Parameters
Parameter
Type
Description
user_identity_id
String Required
ID of the desired user identity
acs_user_id
String Required
ID of the desired ACS user
Sample Request
curl -X 'POST' \
'https://connect.getseam.com/user_identities/remove_acs_user' \
-H 'accept: application/json' \
-H 'Authorization: Bearer ${API_KEY}' \
-H 'Content-Type: application/json' \
-d '{
"user_identity_id": "5c945ab5-c75e-4bcb-8e5f-9410061c401f",
"acs_user_id": "c0184e54-0d93-4bca-8a4e-47bbd2ee3bfe"
}'_, uErr := client.UserIdentities.RemoveAcsUser(context.Background(), &useridentities.UserIdentitiesRemoveAcsUserRequest{
UserIdentityId: "48500a8e-5e7e-4bde-b7e5-0be97cae5d7a",
AcsUserId: "4d223973-0874-4831-8630-bfcb29e6bce0",
})
if uErr != nil {
return uErr
}
return nilResponse
Returns a Boolean ok status indicator.
Sample Response
{
"ok": true
}PreviousList ACS Systems Associated with a User IdentityNextGrant a User Identity Access to a Device
Last updated
Was this helpful?

