Creates a new Catalog Entity from provided data
curl --request POST \
--url https://api.rootly.com/v1/catalogs/{catalog_id}/entities \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "catalog_entities",
"attributes": {
"name": "<string>",
"description": "<string>",
"position": 123
}
}
}'
{
"data": {
"id": "c5c9c47b-8e5b-4471-9c8a-45db70bd3b4b",
"type": "catalog_entities",
"attributes": {
"catalog_id": "e55437bd-1562-4e0b-ad7d-9faa0f7eb6aa",
"name": "Test Item",
"slug": "test-item",
"position": 2,
"deleted_at": null,
"updated_at": "2025-07-05T07:39:56.136-07:00",
"created_at": "2025-07-05T07:39:56.136-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "e55437bd-1562-4e0b-ad7d-9faa0f7eb6aa",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
catalog_entity created
The response is of type object
.
Was this page helpful?
curl --request POST \
--url https://api.rootly.com/v1/catalogs/{catalog_id}/entities \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "catalog_entities",
"attributes": {
"name": "<string>",
"description": "<string>",
"position": 123
}
}
}'
{
"data": {
"id": "c5c9c47b-8e5b-4471-9c8a-45db70bd3b4b",
"type": "catalog_entities",
"attributes": {
"catalog_id": "e55437bd-1562-4e0b-ad7d-9faa0f7eb6aa",
"name": "Test Item",
"slug": "test-item",
"position": 2,
"deleted_at": null,
"updated_at": "2025-07-05T07:39:56.136-07:00",
"created_at": "2025-07-05T07:39:56.136-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "e55437bd-1562-4e0b-ad7d-9faa0f7eb6aa",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}