List Access Groups
Returns a list of all access groups.
To filter the list of access groups, include an acs_system_id
or acs_user_id
.
Code
await seam.acs.accessGroups.list({
acs_system_id: "11111111-1111-1111-1111-111111111111",
acs_user_id: "33333333-3333-3333-3333-333333333333",
});
Output
[
{
"acs_access_group_id": "44444444-4444-4444-4444-444444444444",
"name": "Lobby Access",
"display_name": "Lobby Access",
"access_group_type_display_name": "PTI access level",
"access_group_type": "pti_access_level",
"external_type": "pti_access_level",
"external_type_display_name": "PTI access level",
"acs_system_id": "11111111-1111-1111-1111-111111111111",
"workspace_id": "00000000-0000-0000-0000-000000000000",
"created_at": "2023-11-30T06:27:15.437Z"
}
]
Request Parameters
acs_system_id
String
ID of the access system for which you want to retrieve all access groups.
acs_user_id
String
ID of the access system user for which you want to retrieve all access groups.
user_identity_id
String
ID of the user identity for which you want to retrieve all access groups.
Response
Array of acs_access_groups
Examples
Last updated
Was this helpful?