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": "c6a25aa8-f544-430d-9747-eea721298e70",
"type": "catalog_entities",
"attributes": {
"catalog_id": "e006bef3-c6f7-41e1-bb3f-7828f7e3da33",
"name": "Test Item",
"slug": "test-item",
"position": 2,
"deleted_at": null,
"updated_at": "2025-11-13T17:27:34.253-08:00",
"created_at": "2025-11-13T17:27:34.253-08:00"
},
"relationships": {
"catalog": {
"data": {
"id": "e006bef3-c6f7-41e1-bb3f-7828f7e3da33",
"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": "c6a25aa8-f544-430d-9747-eea721298e70",
"type": "catalog_entities",
"attributes": {
"catalog_id": "e006bef3-c6f7-41e1-bb3f-7828f7e3da33",
"name": "Test Item",
"slug": "test-item",
"position": 2,
"deleted_at": null,
"updated_at": "2025-11-13T17:27:34.253-08:00",
"created_at": "2025-11-13T17:27:34.253-08:00"
},
"relationships": {
"catalog": {
"data": {
"id": "e006bef3-c6f7-41e1-bb3f-7828f7e3da33",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}