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": "a3d0a3c9-3546-4ca8-88ac-d4080dfc1dc1",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "c4421f00-9876-41f6-82fe-df72417c572a",
"catalog_field_id": "46cf5176-2b5c-4cf0-81d8-cb7ce209fa07",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2025-12-09T13:12:43.291-08:00",
"created_at": "2025-12-09T13:12:42.400-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "c4421f00-9876-41f6-82fe-df72417c572a",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "46cf5176-2b5c-4cf0-81d8-cb7ce209fa07",
"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": "a3d0a3c9-3546-4ca8-88ac-d4080dfc1dc1",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "c4421f00-9876-41f6-82fe-df72417c572a",
"catalog_field_id": "46cf5176-2b5c-4cf0-81d8-cb7ce209fa07",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2025-12-09T13:12:43.291-08:00",
"created_at": "2025-12-09T13:12:42.400-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "c4421f00-9876-41f6-82fe-df72417c572a",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "46cf5176-2b5c-4cf0-81d8-cb7ce209fa07",
"type": "catalog_fields"
}
}
}
}
}