Skip to main content
Create View Folder service
curl --request POST \
  --url https://api.coralogix.com/mgmt/openapi/latest/data-exploration/saved-views/v1/folders \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "My Folder"
}'
{
  "id": "3dc02998-0b50-4ea8-b68a-4779d716fa1f",
  "name": "My Folder"
}

Authorizations

Authorization
string
header
required

API key authentication

Body

application/json

Create view folder.

name
string

Folder name

Minimum length: 1
Example:

"My Folder"

Response

200 - application/json

View folder.

name
string
required

Folder name

Minimum length: 1
Example:

"My Folder"

id
string

Unique identifier for folders

Required string length: 36
Example:

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