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": "8fcc096b-f84f-4f20-ba82-4ee38deb9991",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "43a5f1d3-7ad1-4c35-9280-0a1d6ae433d6",
"catalog_field_id": "32e5ddc7-59e5-479f-a76a-1c622abc9450",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2026-02-07T16:45:44.436-08:00",
"created_at": "2026-02-07T16:45:43.933-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "43a5f1d3-7ad1-4c35-9280-0a1d6ae433d6",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "32e5ddc7-59e5-479f-a76a-1c622abc9450",
"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": "8fcc096b-f84f-4f20-ba82-4ee38deb9991",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "43a5f1d3-7ad1-4c35-9280-0a1d6ae433d6",
"catalog_field_id": "32e5ddc7-59e5-479f-a76a-1c622abc9450",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2026-02-07T16:45:44.436-08:00",
"created_at": "2026-02-07T16:45:43.933-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "43a5f1d3-7ad1-4c35-9280-0a1d6ae433d6",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "32e5ddc7-59e5-479f-a76a-1c622abc9450",
"type": "catalog_fields"
}
}
}
}
}