Suspend an ACS User
POST /acs/users/suspend ⇒ void
Suspends a specified ACS user. Suspending an ACS user revokes their access temporarily. To restore an ACS user's access, you can unsuspend them.
Request
await seam.acs.users.suspend({
acs_user_id: "8d7e0b3a-b889-49a7-9164-4b71a0506a33",
});
Response
// void
Authentication Methods
API key
Personal access token Must also include the
seam-workspace
header in the request.
Request Parameters
acs_user_id
acs_user_id
Type: string
Required: Yes
ID of the desired acs_user
.
Return Type
void
Last updated
Was this helpful?