> ## Documentation Index
> Fetch the complete documentation index at: https://developer.sendoso.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get All Team Group Users

> Get the list of users for the specific team.

### Parameters

<ParamField path="team_group_id" type="integer" required>
  The team group id to get the users from
</ParamField>

### Response

Array of user objects with the following properties:

<ResponseField name="id" type="string" required>
  The user's identifier
</ResponseField>

<ResponseField name="first_name" type="string" required>
  The user's first name
</ResponseField>

<ResponseField name="last_name" type="string" required>
  The user's last name
</ResponseField>

<ResponseField name="email" type="string" required>
  The user's email
</ResponseField>

<ResponseField name="balance" type="string" required>
  The user's personal balance
</ResponseField>

<ResponseField name="sandbox" type="boolean" required>
  Whether or not this user is a sandbox user or not
</ResponseField>

<ResponseField name="team_group_id" type="integer" required>
  The user's team group id
</ResponseField>

<ResponseField name="team_id" type="integer" required>
  The team's organization id
</ResponseField>

<ResponseField name="key" type="integer" required>
  The user's invitation key - the user invitation identifier that was used by this user to sign up.
</ResponseField>

<ResponseExample>
  ```json 200 - Ok theme={null}
  [
      {
          "id": 12345,
          "balance": "578.0",
          "first_name": "Sendoso",
          "last_name": "Devs",
          "email": "developers@sendoso.com",
          "team_group_id": 6789,
          "team_id": 4321,
          "sandbox": false,
          "key": "b7afc3c89f84e56d4731f8d6c2c0c543"
      },
      {
          "id": 987,
          "balance": "500.0",
          "first_name": "Sendoso",
          "last_name": "Devs 2",
          "email": "developers2@sendoso.com",
          "team_group_id": 6789,
          "team_id": 4321,
          "sandbox": false,
          "key": "3cd39d35349da5ec6a67a248c661asw4"
      }
  ]
  ```

  ```json 404 - Not Found theme={null}
  {
      "message": "Group not found!"
  }
  ```
</ResponseExample>
