Authorizations
API key authentication
Path Parameters
Response
Response message containing the optional scope configuration (filters for subsystems and applications) for a team group
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/v1/teams/groups/%7Bgroup_id.id%7D/scope';
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));
{
"scope": {
"filters": {
"applications": [
{
"filterType": "FILTER_TYPE_UNSPECIFIED",
"term": "<string>"
}
],
"subsystems": [
{
"filterType": "FILTER_TYPE_UNSPECIFIED",
"term": "<string>"
}
]
},
"id": {
"id": 123
}
}
}
No description available
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/v1/teams/groups/%7Bgroup_id.id%7D/scope';
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));
{
"scope": {
"filters": {
"applications": [
{
"filterType": "FILTER_TYPE_UNSPECIFIED",
"term": "<string>"
}
],
"subsystems": [
{
"filterType": "FILTER_TYPE_UNSPECIFIED",
"term": "<string>"
}
]
},
"id": {
"id": 123
}
}
}
API key authentication
Response message containing the optional scope configuration (filters for subsystems and applications) for a team group
Show child attributes
Was this page helpful?