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": "a7161dc1-b911-4850-bd8f-6f229d6ede0d",
"type": "catalog_entities",
"attributes": {
"catalog_id": "05044faf-bf8f-46e4-a9db-dae0ee1c2e77",
"name": "Test Item",
"slug": "test-item",
"position": 2,
"deleted_at": null,
"updated_at": "2026-01-08T13:56:02.461-08:00",
"created_at": "2026-01-08T13:56:02.461-08:00"
},
"relationships": {
"catalog": {
"data": {
"id": "05044faf-bf8f-46e4-a9db-dae0ee1c2e77",
"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
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": "a7161dc1-b911-4850-bd8f-6f229d6ede0d",
"type": "catalog_entities",
"attributes": {
"catalog_id": "05044faf-bf8f-46e4-a9db-dae0ee1c2e77",
"name": "Test Item",
"slug": "test-item",
"position": 2,
"deleted_at": null,
"updated_at": "2026-01-08T13:56:02.461-08:00",
"created_at": "2026-01-08T13:56:02.461-08:00"
},
"relationships": {
"catalog": {
"data": {
"id": "05044faf-bf8f-46e4-a9db-dae0ee1c2e77",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}