Suspending and Unsuspending ACS Users
Learn how to make temporary access changes by suspending or unsuspending ACS users.
Suspend an ACS User
seam.acs.users.suspend(
acs_user_id="33333333-3333-3333-3333-333333333333"
)Nonecurl -X 'POST' \
'https://connect.getseam.com/acs/users/suspend' \
-H 'accept: application/json' \
-H "Authorization: Bearer ${API_KEY}" \
-H 'Content-Type: application/json' \
-d '{
"acs_user_id": "33333333-3333-3333-3333-333333333333"
}'{
"ok": true
}await seam.acs.users.suspend({
acs_user_id: "33333333-3333-3333-3333-333333333333"
});voidUnsuspend an ACS User
seam.acs.users.unsuspend(
acs_user_id="33333333-3333-3333-3333-333333333333"
)Nonecurl -X 'POST' \
'https://connect.getseam.com/acs/users/unsuspend' \
-H 'accept: application/json' \
-H "Authorization: Bearer ${API_KEY}" \
-H 'Content-Type: application/json' \
-d '{
"acs_user_id": "33333333-3333-3333-3333-333333333333"
}'{
"ok": true
}await seam.acs.users.unsuspend({
acs_user_id: "33333333-3333-3333-3333-333333333333"
});voidLast updated
Was this helpful?

