Ask or search…
K
Links
Comment on page

Add a User to an Access Group

Add a specified user to a specified access group
Adds a specified user (acs_user object) to a specified access group (acs_access_group object).
post
https://connect.getseam.com
/acs/access_groups/add_user
/acs/access_groups/add_user

Request

Specify the desired access group and user by including the corresponding acs_access_group_id and acs_user_id in the request body.

Request Body Parameters

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

Sample Request

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"
}'

Response

Returns a Boolean ok status indicator.

Sample Response

JSON
{
"ok": true
}