# Get Group Members

GET /{groupId}

#### Description

Retrieves the members of a group.

Endpoint: GET /{groupId}/users
Version: 1.0
Security: oauth2

## Path parameters:

  - `groupId` (string, required)
    Unique ID of the group.

## Response 200 fields (application/json):

  - `groupId` (string)
    The unique identifier of the group.
    Example: "12345678-1234-5678-1234-123456789012"

  - `userIds` (array)
    The list of unique identifiers of users who are in the group.
    Example: ["195032c4-0a2b-4f3e-8d5f-1a2b3c4d5e6f","12345678-1234-5678-1234-123456789012"]


