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": "c77cbf12-93d3-4706-9e40-c7befb00a0c5",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "c3ce6ed4-a913-496e-8041-26adf274a8df",
"catalog_field_id": "dafb02f1-0dad-4d74-a25d-aa939fb59677",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2025-12-04T07:28:13.606-08:00",
"created_at": "2025-12-04T07:28:12.862-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "c3ce6ed4-a913-496e-8041-26adf274a8df",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "dafb02f1-0dad-4d74-a25d-aa939fb59677",
"type": "catalog_fields"
}
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
catalog_entity_property updated
Show child attributes
Unique ID of the catalog_entity_property
catalog_entity_properties 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": "c77cbf12-93d3-4706-9e40-c7befb00a0c5",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "c3ce6ed4-a913-496e-8041-26adf274a8df",
"catalog_field_id": "dafb02f1-0dad-4d74-a25d-aa939fb59677",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2025-12-04T07:28:13.606-08:00",
"created_at": "2025-12-04T07:28:12.862-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "c3ce6ed4-a913-496e-8041-26adf274a8df",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "dafb02f1-0dad-4d74-a25d-aa939fb59677",
"type": "catalog_fields"
}
}
}
}
}