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": "372dadd4-a90c-48a2-a611-7372b636e37a",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "28b2a466-8bb4-4cf2-be42-541b2c6bd985",
"catalog_field_id": "205153f8-07f8-4f9c-b1a0-8b147f3f9548",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2026-02-13T09:19:53.687-08:00",
"created_at": "2026-02-13T09:19:53.113-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "28b2a466-8bb4-4cf2-be42-541b2c6bd985",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "205153f8-07f8-4f9c-b1a0-8b147f3f9548",
"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": "372dadd4-a90c-48a2-a611-7372b636e37a",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "28b2a466-8bb4-4cf2-be42-541b2c6bd985",
"catalog_field_id": "205153f8-07f8-4f9c-b1a0-8b147f3f9548",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2026-02-13T09:19:53.687-08:00",
"created_at": "2026-02-13T09:19:53.113-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "28b2a466-8bb4-4cf2-be42-541b2c6bd985",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "205153f8-07f8-4f9c-b1a0-8b147f3f9548",
"type": "catalog_fields"
}
}
}
}
}