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": "0aeaca50-0a0a-4706-837f-6819ac49e019",
"type": "catalog_entities",
"attributes": {
"catalog_id": "addb7183-27d2-4e40-aac6-4f08e2611cc9",
"name": "Test Item",
"slug": "test-item",
"position": 2,
"deleted_at": null,
"updated_at": "2025-10-05T17:22:50.559-07:00",
"created_at": "2025-10-05T17:22:50.559-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "addb7183-27d2-4e40-aac6-4f08e2611cc9",
"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": "0aeaca50-0a0a-4706-837f-6819ac49e019",
"type": "catalog_entities",
"attributes": {
"catalog_id": "addb7183-27d2-4e40-aac6-4f08e2611cc9",
"name": "Test Item",
"slug": "test-item",
"position": 2,
"deleted_at": null,
"updated_at": "2025-10-05T17:22:50.559-07:00",
"created_at": "2025-10-05T17:22:50.559-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "addb7183-27d2-4e40-aac6-4f08e2611cc9",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}