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": "6333c9bc-006d-45b8-b771-9ea6105aafd6",
"type": "catalog_entities",
"attributes": {
"catalog_id": "153f7485-1d99-40c8-9472-0c6d1368c4e3",
"name": "Updated name",
"slug": "test",
"position": 1,
"deleted_at": null,
"updated_at": "2025-08-01T21:45:10.393-07:00",
"created_at": "2025-08-01T21:45:09.368-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "153f7485-1d99-40c8-9472-0c6d1368c4e3",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
catalog_entity updated
The response is of type object
.
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": "6333c9bc-006d-45b8-b771-9ea6105aafd6",
"type": "catalog_entities",
"attributes": {
"catalog_id": "153f7485-1d99-40c8-9472-0c6d1368c4e3",
"name": "Updated name",
"slug": "test",
"position": 1,
"deleted_at": null,
"updated_at": "2025-08-01T21:45:10.393-07:00",
"created_at": "2025-08-01T21:45:09.368-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "153f7485-1d99-40c8-9472-0c6d1368c4e3",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}