Skip to main content
You can suspend an ACS user to revoke their access temporarily. Suspending an ACS user is a good action to take for users who may be behind on payment or have not fulfilled the requirements for entry. Then, once the user rectifies the payment, requirements, or other deficiency, you can unsuspend the ACS user to restore their access.

Suspend an ACS User

To suspend an ACS user, provide the acs_user_id.
Request:
await seam.acs.users.suspend({
  acs_user_id: '33333333-3333-3333-3333-333333333333',
})
Response:
void

Unsuspend an ACS User

To unsuspend an ACS user, provide the acs_user_id.
Request:
await seam.acs.users.unsuspend({
  acs_user_id: '33333333-3333-3333-3333-333333333333',
})
Response:
void