Introduction
Use Cases
Actions Service
Alert Definitions Service
Alert Events Service
API Keys Service
Contextual Data Integration Service
Custom Enrichments Service
Dashboard Folders Service
Dashboard Service
Data Usage Service
Enrichments Service
Events Service
Events2Metrics Service
Extension Deployment Service
Extension Service
Extension Testing Service
Folders for Views
Incidents Service
- Overview
- POSTAcknowledge incidents
- POSTAssign incidents to a user
- POSTClose incidents
- POSTGet available filter values
- POSTGet available incident event filter values
- POSTGet incident aggregations
- GETGet incident by ID
- GETGet incident events
- POSTGet multiple incidents by IDs
- POSTGet total count of incident events
- POSTList incident events with filters
- POSTList incidents with filters
- POSTRemove incident user assignments
- POSTResolve incidents
Integration Service
- Overview
- DELDelete integration
- GETGet all integrations
- GETGet deployed integration
- GETGet integration definition
- GETGet integration details
- GETGet integration template
- GETGet managed integration status
- GETGet RUM integration versions data
- GETList managed integration keys
- POSTSave integration registration metadata
- POSTTest integration
- POSTTrigger sync of RUM integration data
- PUTUpdate integration
Outgoing Webhooks Service
- Overview
- POSTCreate an outgoing webhook
- DELDelete an outgoing webhook
- GETGet outgoing webhook
- GETGet outgoing webhook type details
- GETGet outgoing webhook types
- GETList all outgoing webhooks
- GETList IBM event notification instances
- GETList outbound webhooks summary
- GETList outgoing webhooks
- POSTTest an existing outgoing webhook
- POSTTest an outgoing webhook
- PUTUpdate an outgoing webhook
Policies Service
Recording Rules Service
Retentions Service
Rule Groups Service
SAML Configuration Service
Scopes Service
Slos Service
Target Service
Team Permissions Management Service
- Overview
- POSTAdd Users To Team Group
- POSTAdd Users To Team Groups
- POSTCreate Team Group
- DELDelete Team Group
- GETGet Group Users
- GETGet Team Group
- GETGet Team Group By Name
- GETGet Team Group Scope
- GETGet Team Groups
- DELRemove Users From Team Group
- DELRemove Users From Team Groups
- POSTSet Team Group Scope
- PUTUpdate Team Group
Folders for Views
List view folders service
List view’s folders
Copy
Ask AI
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/v1/view_folders';
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));
Copy
Ask AI
{
"view_folders": [
{
"id": "0cd4ed54-9b59-4eef-b329-151a167e2304",
"name": "My Folder"
}
]
}
Authorizations
API key authentication
Response
200
application/json
A successful response.
The response is of type object
.
Was this page helpful?
Copy
Ask AI
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/v1/view_folders';
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));
Copy
Ask AI
{
"view_folders": [
{
"id": "0cd4ed54-9b59-4eef-b329-151a167e2304",
"name": "My Folder"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.