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 \
  --header 'Authorization: <api-key>'
{
  "nextPageToken": "<string>",
  "totalCount": 123,
  "users": [
    {
      "firstName": "<string>",
      "lastName": "<string>",
      "status": "USER_STATUS_UNSPECIFIED",
      "userAccountId": 123,
      "userId": "<string>",
      "username": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key authentication

Path Parameters

group_id
integer<int64>
required

Query Parameters

page_size
integer<int64>
page_token
string
Example:

""

Response

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

nextPageToken
string
totalCount
integer<int64>
users
User · object[]