Suspend an ACS User
Suspends a specified access system user. Suspending an access system user revokes their access temporarily. To restore an access system user's access, you can unsuspend them.
Suspends a specified access system user, using the associated user identity.
Code:
await seam.acs.users.suspend({
user_identity_id: "73fac667-bd93-4548-add2-e75161d69c7c",
acs_system_id: "f2240088-0bc7-4edb-80d1-485bd956ba7d",
});Output:
// voidSuspends a specified access system user, using the associated user identity.
Code:
curl --include --request POST "https://connect.getseam.com/acs/users/suspend" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"user_identity_id": "73fac667-bd93-4548-add2-e75161d69c7c",
"acs_system_id": "f2240088-0bc7-4edb-80d1-485bd956ba7d"
}
EOFOutput:
{}Suspends a specified access system user, using the associated user identity.
Code:
seam.acs.users.suspend(
user_identity_id="73fac667-bd93-4548-add2-e75161d69c7c",
acs_system_id="f2240088-0bc7-4edb-80d1-485bd956ba7d",
)Output:
NoneSuspends a specified access system user, using the associated user identity.
Code:
seam.acs.users.suspend(
user_identity_id: "73fac667-bd93-4548-add2-e75161d69c7c",
acs_system_id: "f2240088-0bc7-4edb-80d1-485bd956ba7d",
)Output:
nilSuspends a specified access system user, using the associated user identity.
Code:
$seam->acs->users->suspend(
user_identity_id: "73fac667-bd93-4548-add2-e75161d69c7c",
acs_system_id: "f2240088-0bc7-4edb-80d1-485bd956ba7d"
);Output:
Suspends a specified access system user, using the associated user identity.
Code:
seam acs users suspend --user_identity_id "73fac667-bd93-4548-add2-e75161d69c7c" --acs_system_id "f2240088-0bc7-4edb-80d1-485bd956ba7d"Output:
{}Request Parameters
acs_system_id String
ID of the access system that you want to suspend. You can only provide acs_user_id or the combination of acs_system_id and user_identity_id.
acs_user_id String
ID of the access system user that you want to suspend. You can only provide acs_user_id or the combination of acs_system_id and user_identity_id.
user_identity_id String
ID of the user identity that you want to suspend. You can only provide acs_user_id or the combination of acs_system_id and user_identity_id.
Response
void
Examples
Suspend a user identity
Suspends a specified access system user, using the associated user identity.
Code:
await seam.acs.users.suspend({
acs_user_id: "8f934186-1dbc-4098-9f66-d1b202abec9d",
});Output:
// voidCode:
curl --include --request POST "https://connect.getseam.com/acs/users/suspend" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"acs_user_id": "8f934186-1dbc-4098-9f66-d1b202abec9d"
}
EOFOutput:
{}Code:
seam.acs.users.suspend(acs_user_id="8f934186-1dbc-4098-9f66-d1b202abec9d")Output:
NoneCode:
seam.acs.users.suspend(acs_user_id: "8f934186-1dbc-4098-9f66-d1b202abec9d")Output:
nilCode:
$seam->acs->users->suspend(acs_user_id: "8f934186-1dbc-4098-9f66-d1b202abec9d");Output:
Code:
seam acs users suspend --acs_user_id "8f934186-1dbc-4098-9f66-d1b202abec9d"Output:
{}Last updated
Was this helpful?

