List group users
GET/organization/groups/{group_id}/users
Lists the users assigned to a group.
Query Parameters
List group users
curl https://api.openai.com/v1/organization/groups/group_01J1F8ABCDXYZ/users?limit=20 \
-H "Authorization: Bearer $OPENAI_ADMIN_KEY" \
-H "Content-Type: application/json"
{
"object": "list",
"data": [
{
"object": "organization.user",
"id": "user_abc123",
"name": "Ada Lovelace",
"email": "ada@example.com",
"role": "owner",
"added_at": 1711471533
}
],
"has_more": false,
"next": null
}
Returns Examples
{
"object": "list",
"data": [
{
"object": "organization.user",
"id": "user_abc123",
"name": "Ada Lovelace",
"email": "ada@example.com",
"role": "owner",
"added_at": 1711471533
}
],
"has_more": false,
"next": null
}