Authorizations
API key authentication
Response
Response containing a list of all team groups and their complete details, including members, roles, and scope configurations.
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/aaa/team-groups/v1';
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));
{
"groups": [
{
"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"
}
]
}
No description available
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/aaa/team-groups/v1';
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));
{
"groups": [
{
"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"
}
]
}
API key authentication
Response containing a list of all team groups and their complete details, including members, roles, and scope configurations.
Show child attributes
Was this page helpful?