Update a specific Catalog Entity by id
curl --request PUT \
--url https://api.rootly.com/v1/catalog_entities/{id} \
--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": "a8972119-a950-44a7-8cb9-7a6d3566fcf5",
"type": "catalog_entities",
"attributes": {
"catalog_id": "7b9768bf-f9da-4cc5-9a17-69cec1552e5a",
"name": "Updated name",
"slug": "test",
"position": 1,
"deleted_at": null,
"updated_at": "2025-12-08T08:24:08.707-08:00",
"created_at": "2025-12-08T08:24:07.786-08:00"
},
"relationships": {
"catalog": {
"data": {
"id": "7b9768bf-f9da-4cc5-9a17-69cec1552e5a",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Resource UUID
catalog_entity updated
Show child attributes
Unique ID of the catalog_entity
catalog_entities Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/catalog_entities/{id} \
--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": "a8972119-a950-44a7-8cb9-7a6d3566fcf5",
"type": "catalog_entities",
"attributes": {
"catalog_id": "7b9768bf-f9da-4cc5-9a17-69cec1552e5a",
"name": "Updated name",
"slug": "test",
"position": 1,
"deleted_at": null,
"updated_at": "2025-12-08T08:24:08.707-08:00",
"created_at": "2025-12-08T08:24:07.786-08:00"
},
"relationships": {
"catalog": {
"data": {
"id": "7b9768bf-f9da-4cc5-9a17-69cec1552e5a",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}