Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/vnd.api+json
Response
catalog created
The response is of type object
.
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": "6cbf9975-7c4a-47d5-b08a-ddf7abc38f55",
"type": "catalogs",
"attributes": {
"name": "Test",
"slug": "test",
"icon": "shapes",
"description": null,
"position": 2,
"deleted_at": null,
"updated_at": "2025-09-12T18:53:58.654-07:00",
"created_at": "2025-09-12T18:53:58.654-07:00"
},
"relationships": {
"fields": {
"data": []
},
"entities": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
catalog created
The response is of type object
.
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": "6cbf9975-7c4a-47d5-b08a-ddf7abc38f55",
"type": "catalogs",
"attributes": {
"name": "Test",
"slug": "test",
"icon": "shapes",
"description": null,
"position": 2,
"deleted_at": null,
"updated_at": "2025-09-12T18:53:58.654-07:00",
"created_at": "2025-09-12T18:53:58.654-07:00"
},
"relationships": {
"fields": {
"data": []
},
"entities": {
"data": []
}
}
}
}