Update a specific Catalog Entity Property by id.
curl --request PUT \
--url https://api.rootly.com/v1/catalog_entity_properties/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "catalog_entity_properties",
"attributes": {
"key": "text",
"value": "<string>"
}
}
}
'{
"data": {
"id": "fb3dd672-cee1-46ec-9b7f-defd8727cf2f",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "a0a796aa-7a1f-4ee1-8c56-d8c1f298928e",
"catalog_field_id": "7a0af336-ee9e-459b-b351-3e7cfa799aa4",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2026-02-06T13:24:00.496-08:00",
"created_at": "2026-02-06T13:23:59.994-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "a0a796aa-7a1f-4ee1-8c56-d8c1f298928e",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "7a0af336-ee9e-459b-b351-3e7cfa799aa4",
"type": "catalog_fields"
}
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
catalog_entity_property updated
Show child attributes
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/catalog_entity_properties/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "catalog_entity_properties",
"attributes": {
"key": "text",
"value": "<string>"
}
}
}
'{
"data": {
"id": "fb3dd672-cee1-46ec-9b7f-defd8727cf2f",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "a0a796aa-7a1f-4ee1-8c56-d8c1f298928e",
"catalog_field_id": "7a0af336-ee9e-459b-b351-3e7cfa799aa4",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2026-02-06T13:24:00.496-08:00",
"created_at": "2026-02-06T13:23:59.994-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "a0a796aa-7a1f-4ee1-8c56-d8c1f298928e",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "7a0af336-ee9e-459b-b351-3e7cfa799aa4",
"type": "catalog_fields"
}
}
}
}
}