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": "05e15819-fb8b-4845-a085-d76b70f98545",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "69707b9a-d802-47a5-987d-c1da03b0a4df",
"catalog_field_id": "afeae555-fc2b-4bb5-bba0-c922bcd6dc8a",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2026-02-05T01:44:53.570-08:00",
"created_at": "2026-02-05T01:44:52.856-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "69707b9a-d802-47a5-987d-c1da03b0a4df",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "afeae555-fc2b-4bb5-bba0-c922bcd6dc8a",
"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": "05e15819-fb8b-4845-a085-d76b70f98545",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "69707b9a-d802-47a5-987d-c1da03b0a4df",
"catalog_field_id": "afeae555-fc2b-4bb5-bba0-c922bcd6dc8a",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2026-02-05T01:44:53.570-08:00",
"created_at": "2026-02-05T01:44:52.856-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "69707b9a-d802-47a5-987d-c1da03b0a4df",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "afeae555-fc2b-4bb5-bba0-c922bcd6dc8a",
"type": "catalog_fields"
}
}
}
}
}