Skip to main content
Get Group Users
curl --request GET \
  --url https://api.coralogix.com/mgmt/openapi/latest/aaa/team-groups/v1/{group_id.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

group_id.id
integer
required

Query Parameters

page_size
integer
page_token
string

Response

  • GetGroupUsersResponse
  • GetGroupUsersResponse

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

noMorePages
object

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

users
object[]