Skip to main content
node
const fetch = require('node-fetch');

let url = 'https://api.coralogix.com/mgmt/openapi/aaa/team-groups/v1/%7Bgroup_id.id%7D/users';

let options = {method: 'GET', headers: {Authorization: 'Bearer <API_KEY>'}};

fetch(url, options)
  .then(res => res.json())
  .then(json => console.log(json))
  .catch(err => console.error('error:' + err));
{
  "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

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[]
I