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": "3b08f9f8-476a-4922-bff3-05506669f8f0",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "d8f33b03-207a-48a2-88d2-0bcd071743be",
"catalog_field_id": "7f75409c-e0f7-42a4-b0c3-0b5f911b6d65",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2026-01-12T02:25:18.019-08:00",
"created_at": "2026-01-12T02:25:17.217-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "d8f33b03-207a-48a2-88d2-0bcd071743be",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "7f75409c-e0f7-42a4-b0c3-0b5f911b6d65",
"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": "3b08f9f8-476a-4922-bff3-05506669f8f0",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "d8f33b03-207a-48a2-88d2-0bcd071743be",
"catalog_field_id": "7f75409c-e0f7-42a4-b0c3-0b5f911b6d65",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2026-01-12T02:25:18.019-08:00",
"created_at": "2026-01-12T02:25:17.217-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "d8f33b03-207a-48a2-88d2-0bcd071743be",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "7f75409c-e0f7-42a4-b0c3-0b5f911b6d65",
"type": "catalog_fields"
}
}
}
}
}