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": "0f6488f6-9e17-43d1-9707-cd4f7b805a92",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "c6e84d53-989e-4f1f-8ba7-e88751f1e0f0",
"catalog_field_id": "3f03c29e-a360-476f-94d1-3d2e681326a9",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2025-12-08T10:07:48.838-08:00",
"created_at": "2025-12-08T10:07:48.409-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "c6e84d53-989e-4f1f-8ba7-e88751f1e0f0",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "3f03c29e-a360-476f-94d1-3d2e681326a9",
"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": "0f6488f6-9e17-43d1-9707-cd4f7b805a92",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "c6e84d53-989e-4f1f-8ba7-e88751f1e0f0",
"catalog_field_id": "3f03c29e-a360-476f-94d1-3d2e681326a9",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2025-12-08T10:07:48.838-08:00",
"created_at": "2025-12-08T10:07:48.409-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "c6e84d53-989e-4f1f-8ba7-e88751f1e0f0",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "3f03c29e-a360-476f-94d1-3d2e681326a9",
"type": "catalog_fields"
}
}
}
}
}