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": "ef7050a2-a1ec-483a-aae5-8d6562d49baf",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "ec1a3973-faa7-40a4-b870-e993e549ad49",
"catalog_field_id": "f936fa62-7cc5-4e5f-9bc1-897feadb96f5",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2026-01-13T01:33:17.120-08:00",
"created_at": "2026-01-13T01:33:16.601-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "ec1a3973-faa7-40a4-b870-e993e549ad49",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "f936fa62-7cc5-4e5f-9bc1-897feadb96f5",
"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": "ef7050a2-a1ec-483a-aae5-8d6562d49baf",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "ec1a3973-faa7-40a4-b870-e993e549ad49",
"catalog_field_id": "f936fa62-7cc5-4e5f-9bc1-897feadb96f5",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2026-01-13T01:33:17.120-08:00",
"created_at": "2026-01-13T01:33:16.601-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "ec1a3973-faa7-40a4-b870-e993e549ad49",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "f936fa62-7cc5-4e5f-9bc1-897feadb96f5",
"type": "catalog_fields"
}
}
}
}
}