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": "ec08815c-8861-4371-8ddf-f961c4f20a5b",
"type": "catalog_entities",
"attributes": {
"catalog_id": "3cce9e43-4e9d-4d32-9e0f-17d4d50cd1db",
"name": "Test Item",
"slug": "test-item",
"position": 2,
"deleted_at": null,
"updated_at": "2025-07-25T22:34:59.975-07:00",
"created_at": "2025-07-25T22:34:59.975-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "3cce9e43-4e9d-4d32-9e0f-17d4d50cd1db",
"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": "ec08815c-8861-4371-8ddf-f961c4f20a5b",
"type": "catalog_entities",
"attributes": {
"catalog_id": "3cce9e43-4e9d-4d32-9e0f-17d4d50cd1db",
"name": "Test Item",
"slug": "test-item",
"position": 2,
"deleted_at": null,
"updated_at": "2025-07-25T22:34:59.975-07:00",
"created_at": "2025-07-25T22:34:59.975-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "3cce9e43-4e9d-4d32-9e0f-17d4d50cd1db",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}