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

let url = 'https://api.coralogix.com/mgmt/openapi/v1/views/52';

let options = {
  method: 'PUT',
  headers: {Authorization: 'Bearer <API_KEY>', 'content-type': 'application/json'},
  body: '{"filters":{"filters":[{"name":"applicationName","selectedValues":[{"key":"string","value":true}]}]},"folderId":"3dc02998-0b50-4ea8-b68a-4779d716fa1f","isCompactMode":true,"name":"Logs view","searchQuery":{"query":"string"},"timeSelection":{"quickSelection":{"caption":"Last Hour","seconds":3600}},"viewType":"VIEW_TYPE_UNSPECIFIED"}'
};

fetch(url, options)
  .then(res => res.json())
  .then(json => console.log(json))
  .catch(err => console.error('error:' + err));
{
  "filters": {
    "filters": [
      {
        "name": "applicationName",
        "selectedValues": [
          {
            "key": "<string>",
            "value": true
          }
        ]
      }
    ]
  },
  "folderId": "3dc02998-0b50-4ea8-b68a-4779d716fa1f",
  "id": 52,
  "isCompactMode": true,
  "name": "Logs view",
  "searchQuery": {
    "query": "<string>"
  },
  "timeSelection": {
    "quickSelection": {
      "caption": "Last Hour",
      "seconds": 3600
    }
  },
  "viewType": "VIEW_TYPE_UNSPECIFIED"
}

Authorizations

Authorization
string
header
required

API key authentication

Path Parameters

view.id
integer
required

id

Example:

52

Body

application/json

Response for views.

name
string
required

View name

Minimum length: 1
Example:

"Logs view"

timeSelection
object
required
  • Option 1
  • Option 2
filters
object
folderId
string

Unique identifier for folders

Required string length: 36
Example:

"3dc02998-0b50-4ea8-b68a-4779d716fa1f"

isCompactMode
boolean
searchQuery
object
viewType
enum<string>
Available options:
VIEW_TYPE_UNSPECIFIED,
VIEW_TYPE_LOGS,
VIEW_TYPE_TEMPLATES,
VIEW_TYPE_ARCHIVE_LOGS,
VIEW_TYPE_ARCHIVE_TEMPLATES

Response

200 - application/json

Response for views.

id
integer
required

id

Example:

52

name
string
required

View name

Minimum length: 1
Example:

"Logs view"

timeSelection
object
required
  • Option 1
  • Option 2
filters
object
folderId
string

Unique identifier for folders

Required string length: 36
Example:

"3dc02998-0b50-4ea8-b68a-4779d716fa1f"

isCompactMode
boolean
searchQuery
object
viewType
enum<string>
Available options:
VIEW_TYPE_UNSPECIFIED,
VIEW_TYPE_LOGS,
VIEW_TYPE_TEMPLATES,
VIEW_TYPE_ARCHIVE_LOGS,
VIEW_TYPE_ARCHIVE_TEMPLATES
I