Comment on page
Add a User to an Access Group
Add a specified user to a specified access group
post
https://connect.getseam.com
/acs/access_groups/add_user
/acs/access_groups/add_user
Specify the desired access group and user by including the corresponding
acs_access_group_id
and acs_user_id
in the request body.Parameter | Type | Description |
---|---|---|
acs_access_group_id | String
Required | ID of the desired access group |
acs_user_id | String
Required | ID of the desired user |
cURL (bash)
curl -X 'POST' \
'https://connect.getseam.com/acs/access_groups/add_user' \
-H 'accept: application/json' \
-H 'Authorization: Bearer ${API_KEY}' \
-H 'Content-Type: application/json' \
-d '{
"acs_access_group_id": "cfcc0254-b577-41bd-a51e-4a1fe0023754",
"acs_user_id": "efaeae64-e471-4e1f-a621-f518c624d99c"
}'
Returns a Boolean
ok
status indicator.JSON
{
"ok": true
}
Last modified 2mo ago