Skip to main content
POST
/
api
/
v1
/
config
/
collections
cURL
curl --request POST \
  --url https://{tenant}.chronosphere.io/api/v1/config/collections \
  --header 'API-Token: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{}'
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://{tenant}.chronosphere.io/api/v1/config/collections"

	payload := strings.NewReader("{}")

	req, _ := http.NewRequest("POST", url, payload)

	req.Header.Add("API-Token", "<api-key>")
	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://{tenant}.chronosphere.io/api/v1/config/collections")
  .header("API-Token", "<api-key>")
  .header("Content-Type", "application/json")
  .body("{}")
  .asString();
const options = {
  method: 'POST',
  headers: {'API-Token': '<api-key>', 'Content-Type': 'application/json'},
  body: JSON.stringify({})
};

fetch('https://{tenant}.chronosphere.io/api/v1/config/collections', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
import requests

url = "https://{tenant}.chronosphere.io/api/v1/config/collections"

payload = {}
headers = {
    "API-Token": "<api-key>",
    "Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
{
  "collection": {
    "name": "<string>",
    "team_slug": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "description": "<string>",
    "notification_policy_slug": "<string>",
    "slug": "<string>",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}
{
  "message": "<string>"
}
{
  "message": "<string>"
}
{
  "message": "<string>"
}
{}

Authorizations

API-Token
string
header
required

Chronosphere API token

Body

application/json
collection
object

The Collection to create.

dry_run
boolean

If true, validates the specified configuration without creating the Collection. If the specified configuration is valid, the endpoint returns a partial response without the Collection. If the specified configuration is invalid, the endpoint returns an error.

Response

A successful response containing the created Collection.

collection
object