/auth/v1/groups/<group_ID>/users: GET

Gets the details of the users who are part of a specific group.

The following table shows which roles can access this REST API endpoint:
Table 1. Access by role
Data admin Data user Collection Admin Admin Service user
Χ Χ Χ Χ

Synopsis of the request URL

curl -k  -H ‘Authorization: Bearer <token>’ https://<spectrum_discover_host>/auth/v1/groups/<group_ID>/users 

Supported request types and response formats

Supported request types:
  • GET
Supported response formats:
  • JSON

Examples

The following example shows how to get the details of the users that are part of a user group.

Request:
curl -k  -H ‘Authorization: Bearer <token>’ https://<spectrum_discover_host>/auth/v1/groups/ a51f84bfeb034b12a9a362109d78bec3/users 

Response:

(200 OK):
[
    {
        "domain_id": "default",
               "email": "testuser@ibm.com",
               "enabled": true,
               "id": "dfdb2cadca0d4e9da26e6c40e5cadbd5",
               "name": "datauseruser",
               "options": {},
               "password_expires_at": null
    },
    {
        "domain_id": "default",
               "email": "testuser@ibm.com",
               "enabled": true,
               "id": "106999c5eb7f4148932be6d24b6b772c",
               "name": "test-datauser-1",
               "options": {},
               "password_expires_at": null
    }
]