Creates a new catalog from provided data
curl --request POST \
--url https://api.rootly.com/v1/catalogs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "catalogs",
"attributes": {
"name": "<string>",
"description": "<string>",
"icon": "globe-alt",
"position": 123
}
}
}
'{
"data": {
"id": "<string>",
"type": "catalogs",
"attributes": {
"name": "<string>",
"icon": "globe-alt",
"position": 123,
"created_at": "<string>",
"updated_at": "<string>",
"description": "<string>"
}
}
}Was this page helpful?
curl --request POST \
--url https://api.rootly.com/v1/catalogs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "catalogs",
"attributes": {
"name": "<string>",
"description": "<string>",
"icon": "globe-alt",
"position": 123
}
}
}
'{
"data": {
"id": "<string>",
"type": "catalogs",
"attributes": {
"name": "<string>",
"icon": "globe-alt",
"position": 123,
"created_at": "<string>",
"updated_at": "<string>",
"description": "<string>"
}
}
}