Assigning ACS Users to Access Groups
Learn how to use access groups to manage ACS user permissions across different doors and areas.
Add an ACS User to an Access Group
seam.acs.users.add_to_access_group(
acs_user_id="33333333-3333-3333-3333-333333333333",
acs_access_group_id="44444444-4444-4444-4444-444444444444"
)Nonecurl -X 'POST' \
'https://connect.getseam.com/acs/users/add_to_access_group' \
-H "Authorization: Bearer ${SEAM_API_KEY}" \
-H 'Content-Type: application/json' \
-d '{
"acs_user_id": "33333333-3333-3333-3333-333333333333",
"acs_access_group_id": "44444444-4444-4444-4444-444444444444"
}'{
"ok": true
}Remove an ACS User from an Access Group
seam.acs.users.remove_from_access_group(
acs_user_id="33333333-3333-3333-3333-333333333333",
acs_access_group_id="44444444-4444-4444-4444-444444444444"
)Nonecurl -X 'POST' \
'https://connect.getseam.com/acs/users/remove_from_access_group' \
-H 'accept: */*' \
-H "Authorization: Bearer ${SEAM_API_KEY}" \
-H 'Content-Type: application/json' \
-d '{
"acs_user_id": "33333333-3333-3333-3333-333333333333",
"acs_access_group_id": "44444444-4444-4444-4444-444444444444"
}'{
"ok": true
}Last updated
Was this helpful?

