Skip to main content
Get Group Users
curl --request GET \
  --url https://api.coralogix.com/mgmt/openapi/latest/aaa/team-groups/v1/{id}/users \
  --header 'Authorization: <api-key>'
{
  "noMorePages": {},
  "users": [
    {
      "firstName": "<string>",
      "lastName": "<string>",
      "status": "USER_STATUS_UNSPECIFIED",
      "userAccountId": {
        "id": 123
      },
      "userId": {
        "id": "<string>"
      },
      "username": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key authentication

Path Parameters

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.

noMorePages
NoMorePages · object

This data structure represents the information associated with an API key.

users
object[]