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.
POST /acs/users/suspend β void
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 an ACS user
Suspends a specified ACS user. Suspending an ACS user revokes their access temporarily. To restore an ACS user's access, you can unsuspend them.
Code
await seam.acs.users.suspend({
acs_user_id: "8d7e0b3a-b889-49a7-9164-4b71a0506a33",
});
Output
// void
Last updated
Was this helpful?