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": "2c679067-d365-4f40-9feb-570ab7385783",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "3d2b5a77-2f6d-4445-8864-9934aadfedde",
"catalog_field_id": "9bfb3254-a52f-4fe5-97a7-dc81218e9568",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2026-02-04T12:54:47.201-08:00",
"created_at": "2026-02-04T12:54:46.777-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "3d2b5a77-2f6d-4445-8864-9934aadfedde",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "9bfb3254-a52f-4fe5-97a7-dc81218e9568",
"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": "2c679067-d365-4f40-9feb-570ab7385783",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "3d2b5a77-2f6d-4445-8864-9934aadfedde",
"catalog_field_id": "9bfb3254-a52f-4fe5-97a7-dc81218e9568",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2026-02-04T12:54:47.201-08:00",
"created_at": "2026-02-04T12:54:46.777-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "3d2b5a77-2f6d-4445-8864-9934aadfedde",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "9bfb3254-a52f-4fe5-97a7-dc81218e9568",
"type": "catalog_fields"
}
}
}
}
}