For the complete documentation index, see llms.txt. This page is also available as Markdown.

List IB Groups

Get a list of all Information Barrier Groups in the company (pod).

Get a list of all Information Barrier Groups

get
Header parameters
sessionTokenstringRequired

Session authentication token.

Responses
200

Success

application/json

Information Barrier Group record.

idstringOptionalExample: 571db1f2e4b027c4f055a594
namestringOptionalExample: Group 1
activebooleanOptionalExample: true
memberCountinteger · int32OptionalExample: 1
policiesstring[]OptionalExample: ["571db2e4e4b012df6341f393"]
createdDateinteger · int64OptionalExample: 1461563890135
modifiedDateinteger · int64OptionalExample: 1461563926812
get/v1/admin/group/list
GET /pod/v1/admin/group/list HTTP/1.1
Host: yourpodURL.symphony.com
sessionToken: text
Accept: */*
[
  {
    "id": "571db1f2e4b027c4f055a594",
    "name": "Group 1",
    "active": true,
    "memberCount": 1,
    "policies": [
      "571db2e4e4b012df6341f393"
    ],
    "createdDate": 1461563890135,
    "modifiedDate": 1461563926812
  },
  {
    "id": "571db20ae4b012df6341f391",
    "name": "Group 2",
    "active": true,
    "memberCount": 1,
    "policies": [
      "571db2e4e4b012df6341f393"
    ],
    "createdDate": 1461563914581,
    "modifiedDate": 1461564112286
  }
]

📘 Note

This API returns only IB Groups that have at least one policy associated with it.

🚧 Roles and Privileges

Calling this endpoint requires the ACCESS_USER_PROVISIONING_API privilege. See Bot Permissions for a list of roles and associated privileges.

Last updated

Was this helpful?