Skip to main content
Get Group Users
curl --request GET \
  --url https://api.coralogix.com/mgmt/openapi/5/aaa/team-groups/v2/{group_id}/users/list \
  --header 'Authorization: <api-key>'
{
  "nextPageToken": "<string>",
  "totalCount": 123,
  "users": [
    {
      "firstName": "<string>",
      "lastName": "<string>",
      "userAccountId": 123,
      "userId": "<string>",
      "username": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.coralogix.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key authentication

Path Parameters

group_id
integer<int64>
required

The unique identifier of the team group whose users to list.

Query Parameters

page_size
integer<int64>

Pagination size. Defaults to 100 if empty.

page_token
string

Optional pagination continuation token.

Example:

""

Response

Response containing the list of all users currently assigned to the requested team group.

nextPageToken
string

Token for fetching the next page of results.

totalCount
integer<int64>

The total count.

users
User · object[]

List of users.