Removes a specified from a specified .
POST /acs/access_groups/remove_user ⇒ void
Authentication Methods
Personal access token
Must also include the seam-workspace
header in the request.
To learn more, see .
Request Parameters
acs_access_group_id
String (Required)
ID of the access group from which you want to remove an access system user.
acs_user_id
String
ID of the access system user that you want to remove from an access group.
user_identity_id
String
ID of the user identity associated with the user that you want to remove from an access group.
Response
void
Examples
Remove an ACS user from an access group
Specify the acs_access_group_id
and acs_user_id
to remove an ACS user from an access group.
Code
await seam.acs.accessGroups.removeUser({
acs_access_group_id: "44444444-4444-4444-4444-444444444444",
acs_user_id: "33333333-3333-3333-3333-333333333333",
});
Output
Code
seam.acs.access_groups.remove_user(
acs_access_group_id="44444444-4444-4444-4444-444444444444",
acs_user_id="33333333-3333-3333-3333-333333333333",
)
Output
Code
seam.acs.access_groups.remove_user(
acs_access_group_id: "44444444-4444-4444-4444-444444444444",
acs_user_id: "33333333-3333-3333-3333-333333333333",
)
Output
Code
<?php
$seam->acs->access_groups->remove_user(
acs_access_group_id: "44444444-4444-4444-4444-444444444444",
acs_user_id: "33333333-3333-3333-3333-333333333333"
);
Output
Code
seam acs access-groups remove-user --acs_access_group_id "44444444-4444-4444-4444-444444444444" --acs_user_id "33333333-3333-3333-3333-333333333333"
Output
Code
package main
import api "github.com/seamapi/go"
import accessgroups "github.com/seamapi/go/accessgroups"
func main() {
client.Acs.AccessGroups.RemoveUser(
context.Background(),
accessgroups.AccessGroupsRemoveUserRequest{
AcsAccessGroupId: api.String("44444444-4444-4444-4444-444444444444"),
AcsUserId: api.String("33333333-3333-3333-3333-333333333333"),
},
)
}
Output
Code
curl --include --request POST "https://connect.getseam.com/acs/access_groups/remove_user" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"acs_access_group_id": "44444444-4444-4444-4444-444444444444",
"acs_user_id": "33333333-3333-3333-3333-333333333333"
}
EOF
Output