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": "ea964ca6-4301-4475-a843-820118b15612",
"type": "catalog_entities",
"attributes": {
"catalog_id": "a0680875-b87e-4cfb-a04f-fa73c7d884f2",
"name": "Updated name",
"slug": "test",
"position": 1,
"deleted_at": null,
"updated_at": "2026-01-16T12:38:19.979-08:00",
"created_at": "2026-01-16T12:38:19.403-08:00"
},
"relationships": {
"catalog": {
"data": {
"id": "a0680875-b87e-4cfb-a04f-fa73c7d884f2",
"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": "ea964ca6-4301-4475-a843-820118b15612",
"type": "catalog_entities",
"attributes": {
"catalog_id": "a0680875-b87e-4cfb-a04f-fa73c7d884f2",
"name": "Updated name",
"slug": "test",
"position": 1,
"deleted_at": null,
"updated_at": "2026-01-16T12:38:19.979-08:00",
"created_at": "2026-01-16T12:38:19.403-08:00"
},
"relationships": {
"catalog": {
"data": {
"id": "a0680875-b87e-4cfb-a04f-fa73c7d884f2",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}