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": "d6d3829f-dff0-42c2-85b6-155fc94f4e55",
"type": "catalog_entities",
"attributes": {
"catalog_id": "6459693f-4945-4344-bdec-1f03e1bac96f",
"name": "Updated name",
"slug": "test",
"position": 1,
"deleted_at": null,
"updated_at": "2025-12-24T09:23:47.968-08:00",
"created_at": "2025-12-24T09:23:47.459-08:00"
},
"relationships": {
"catalog": {
"data": {
"id": "6459693f-4945-4344-bdec-1f03e1bac96f",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Resource UUID
Show child attributes
catalog_entity updated
Show child attributes
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": "d6d3829f-dff0-42c2-85b6-155fc94f4e55",
"type": "catalog_entities",
"attributes": {
"catalog_id": "6459693f-4945-4344-bdec-1f03e1bac96f",
"name": "Updated name",
"slug": "test",
"position": 1,
"deleted_at": null,
"updated_at": "2025-12-24T09:23:47.968-08:00",
"created_at": "2025-12-24T09:23:47.459-08:00"
},
"relationships": {
"catalog": {
"data": {
"id": "6459693f-4945-4344-bdec-1f03e1bac96f",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}