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": "0ef4cea2-ab51-480d-ae16-c6d38e1033d3",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "6c88c7e0-013c-41e6-b826-1e85bb22a2aa",
"catalog_field_id": "f22802b0-868f-4e9b-af43-7ca3079419a7",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2025-12-17T09:00:38.278-08:00",
"created_at": "2025-12-17T09:00:37.696-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "6c88c7e0-013c-41e6-b826-1e85bb22a2aa",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "f22802b0-868f-4e9b-af43-7ca3079419a7",
"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": "0ef4cea2-ab51-480d-ae16-c6d38e1033d3",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "6c88c7e0-013c-41e6-b826-1e85bb22a2aa",
"catalog_field_id": "f22802b0-868f-4e9b-af43-7ca3079419a7",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2025-12-17T09:00:38.278-08:00",
"created_at": "2025-12-17T09:00:37.696-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "6c88c7e0-013c-41e6-b826-1e85bb22a2aa",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "f22802b0-868f-4e9b-af43-7ca3079419a7",
"type": "catalog_fields"
}
}
}
}
}