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": "be1a996b-b288-48ad-b508-62db1249161e",
"type": "catalog_entities",
"attributes": {
"catalog_id": "70217f38-20ca-4c69-b03f-b923930a5710",
"name": "Test Item",
"slug": "test-item",
"position": 2,
"deleted_at": null,
"updated_at": "2025-08-15T07:10:22.546-07:00",
"created_at": "2025-08-15T07:10:22.546-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "70217f38-20ca-4c69-b03f-b923930a5710",
"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": "be1a996b-b288-48ad-b508-62db1249161e",
"type": "catalog_entities",
"attributes": {
"catalog_id": "70217f38-20ca-4c69-b03f-b923930a5710",
"name": "Test Item",
"slug": "test-item",
"position": 2,
"deleted_at": null,
"updated_at": "2025-08-15T07:10:22.546-07:00",
"created_at": "2025-08-15T07:10:22.546-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "70217f38-20ca-4c69-b03f-b923930a5710",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}