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": "c94a6c99-e81d-418b-b471-e407910645e7",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "da3b8a54-0517-4089-bff1-b1d34e89d52d",
"catalog_field_id": "6fa3c494-8a7b-4c01-8aa2-72adfbef1cf7",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2025-07-22T23:23:48.672-07:00",
"created_at": "2025-07-22T23:23:47.647-07:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "da3b8a54-0517-4089-bff1-b1d34e89d52d",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "6fa3c494-8a7b-4c01-8aa2-72adfbef1cf7",
"type": "catalog_fields"
}
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
catalog_entity_property updated
The response is of type object
.
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": "c94a6c99-e81d-418b-b471-e407910645e7",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "da3b8a54-0517-4089-bff1-b1d34e89d52d",
"catalog_field_id": "6fa3c494-8a7b-4c01-8aa2-72adfbef1cf7",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2025-07-22T23:23:48.672-07:00",
"created_at": "2025-07-22T23:23:47.647-07:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "da3b8a54-0517-4089-bff1-b1d34e89d52d",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "6fa3c494-8a7b-4c01-8aa2-72adfbef1cf7",
"type": "catalog_fields"
}
}
}
}
}