Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Body
application/vnd.api+json
Response
catalog_entity created
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": "c8f39501-f13d-4b20-9b3e-cbd9c9a85a1d",
"type": "catalog_entities",
"attributes": {
"catalog_id": "f052f050-9842-4703-af71-14b0c5136a9a",
"name": "Test Item",
"slug": "test-item",
"position": 2,
"deleted_at": null,
"updated_at": "2025-11-06T13:19:52.246-08:00",
"created_at": "2025-11-06T13:19:52.246-08:00"
},
"relationships": {
"catalog": {
"data": {
"id": "f052f050-9842-4703-af71-14b0c5136a9a",
"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": "c8f39501-f13d-4b20-9b3e-cbd9c9a85a1d",
"type": "catalog_entities",
"attributes": {
"catalog_id": "f052f050-9842-4703-af71-14b0c5136a9a",
"name": "Test Item",
"slug": "test-item",
"position": 2,
"deleted_at": null,
"updated_at": "2025-11-06T13:19:52.246-08:00",
"created_at": "2025-11-06T13:19:52.246-08:00"
},
"relationships": {
"catalog": {
"data": {
"id": "f052f050-9842-4703-af71-14b0c5136a9a",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}