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": "06196994-a337-41ef-80ab-d92dead6a2e3",
"type": "catalog_entities",
"attributes": {
"catalog_id": "25807824-6ce9-445a-a7dc-213aae8ab4fc",
"name": "Test Item",
"slug": "test-item",
"position": 2,
"deleted_at": null,
"updated_at": "2025-12-08T02:41:25.670-08:00",
"created_at": "2025-12-08T02:41:25.670-08:00"
},
"relationships": {
"catalog": {
"data": {
"id": "25807824-6ce9-445a-a7dc-213aae8ab4fc",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
catalog_entity created
Show child attributes
Unique ID of the catalog_entity
catalog_entities 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": "06196994-a337-41ef-80ab-d92dead6a2e3",
"type": "catalog_entities",
"attributes": {
"catalog_id": "25807824-6ce9-445a-a7dc-213aae8ab4fc",
"name": "Test Item",
"slug": "test-item",
"position": 2,
"deleted_at": null,
"updated_at": "2025-12-08T02:41:25.670-08:00",
"created_at": "2025-12-08T02:41:25.670-08:00"
},
"relationships": {
"catalog": {
"data": {
"id": "25807824-6ce9-445a-a7dc-213aae8ab4fc",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}