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';

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));
{
  "group": {
    "createdAt": "2023-11-07T05:31:56Z",
    "description": "<string>",
    "externalId": "<string>",
    "groupId": {
      "id": 123
    },
    "groupOrigin": "GROUP_ORIGIN_UNSPECIFIED",
    "groupType": "GROUP_TYPE_UNSPECIFIED",
    "name": "<string>",
    "nextGenScopeId": "<string>",
    "roles": [
      {
        "description": "<string>",
        "name": "<string>",
        "roleId": {
          "id": 123
        }
      }
    ],
    "scope": {
      "filters": {
        "applications": [
          {
            "filterType": "FILTER_TYPE_UNSPECIFIED",
            "term": "<string>"
          }
        ],
        "subsystems": [
          {
            "filterType": "FILTER_TYPE_UNSPECIFIED",
            "term": "<string>"
          }
        ]
      },
      "id": {
        "id": 123
      }
    },
    "teamId": {
      "id": 123
    },
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

API key authentication

Path Parameters

group_id.id
integer
required

Response

Response containing the complete details of a requested team group, including its members, assigned roles, and scope configuration.

group
object
I