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": "6382b805-c59e-4e4a-9b36-c3b201cb26fd",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "b9f89772-c977-4274-a473-13997526e35f",
"catalog_field_id": "c96e7221-ff76-492f-b7f6-b639a703db2d",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2026-01-15T23:00:35.464-08:00",
"created_at": "2026-01-15T23:00:35.055-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "b9f89772-c977-4274-a473-13997526e35f",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "c96e7221-ff76-492f-b7f6-b639a703db2d",
"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": "6382b805-c59e-4e4a-9b36-c3b201cb26fd",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "b9f89772-c977-4274-a473-13997526e35f",
"catalog_field_id": "c96e7221-ff76-492f-b7f6-b639a703db2d",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2026-01-15T23:00:35.464-08:00",
"created_at": "2026-01-15T23:00:35.055-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "b9f89772-c977-4274-a473-13997526e35f",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "c96e7221-ff76-492f-b7f6-b639a703db2d",
"type": "catalog_fields"
}
}
}
}
}