Get an Access Group

Returns a specified access group.

POST /acs/access_groups/get β‡’ { acs_access_group }
Authentication Methods
  • API key

  • Personal access token Must also include the seam-workspace header in the request.

To learn more, see Authentication.

Request Parameters

acs_access_group_id String (Required)

ID of the access group that you want to get.


Response

acs_access_group

{
  JSON representation of acs_access_group
}

Examples

Get a specific access group

Specify the acs_access_group_id of the access group that you want to retrieve.

Code

await seam.acs.accessGroups.get({
  acs_access_group_id: "44444444-4444-4444-4444-444444444444",
});

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

Last updated

Was this helpful?

Revision created

ci: Generate docs