Add a User to an Access Group

Add a specified ACS user to a specified access group

Adds a specified ACS user to a specified access group.

/acs/users/add_to_access_group

post

Adds a specified access system user to a specified access group.

Authorizations
Body
acs_user_idstring · uuidRequired

ID of the access system user that you want to add to an access group.

acs_access_group_idstring · uuidRequired

ID of the access group to which you want to add an access system user.

Responses
200
OK
application/json
post
POST /acs/users/add_to_access_group HTTP/1.1
Host: connect.getseam.com
Authorization: Bearer API Token
Content-Type: application/json
Accept: */*
Content-Length: 115

{
  "acs_user_id": "123e4567-e89b-12d3-a456-426614174000",
  "acs_access_group_id": "123e4567-e89b-12d3-a456-426614174000"
}
{
  "ok": true
}

Request

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

Request Body Parameters

Parameter
Type
Description

acs_user_id

String (UUID) Required

ID of the desired ACS user

acs_access_group_id

String (UUID) Required

ID of the desired access group

Sample Request

seam.acs.users.add_to_access_group(
  acs_user_id="33333333-3333-3333-3333-333333333333",
  acs_access_group_id="44444444-4444-4444-4444-444444444444"
)

Response

Returns a Boolean ok status indicator or void.

Sample Response

None

Last updated

Was this helpful?

Revision created

Merge branch 'main' into beta