Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/vnd.api+json
Response
catalog_entity_property updated
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": "21c58ff0-6f65-44a2-b94a-f41f3ac0db66",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "337ecbe4-3711-4d0a-840a-f49982c78e2e",
"catalog_field_id": "97ec88c6-77a5-449b-9934-9d24ac8f5ef2",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2025-10-08T04:33:44.435-07:00",
"created_at": "2025-10-08T04:33:43.765-07:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "337ecbe4-3711-4d0a-840a-f49982c78e2e",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "97ec88c6-77a5-449b-9934-9d24ac8f5ef2",
"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": "21c58ff0-6f65-44a2-b94a-f41f3ac0db66",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "337ecbe4-3711-4d0a-840a-f49982c78e2e",
"catalog_field_id": "97ec88c6-77a5-449b-9934-9d24ac8f5ef2",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2025-10-08T04:33:44.435-07:00",
"created_at": "2025-10-08T04:33:43.765-07:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "337ecbe4-3711-4d0a-840a-f49982c78e2e",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "97ec88c6-77a5-449b-9934-9d24ac8f5ef2",
"type": "catalog_fields"
}
}
}
}
}