curl --request GET \
--url https://app-sandbox.staging.sendo.so/api/v3/groups/{team_group_id}/members \
--header 'Authorization: Bearer <token>'
[
{
"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"
}
]
Parameters
The team group id to get the users from
Response
Array of user objects with the following properties:
The user’s personal balance
Whether or not this user is a sandbox user or not
The team’s organization id
The user’s invitation key - the user invitation identifier that was used by this user to sign up.
[
{
"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"
}
]