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": "5f3a9739-ba2e-4185-b8c8-9a60c293f5c7",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "5c734c75-89d8-49ec-9fa8-c48a2a473135",
"catalog_field_id": "0d969c59-a6cf-4950-8c73-338d57fbd918",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2025-11-27T00:06:19.653-08:00",
"created_at": "2025-11-27T00:06:18.916-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "5c734c75-89d8-49ec-9fa8-c48a2a473135",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "0d969c59-a6cf-4950-8c73-338d57fbd918",
"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": "5f3a9739-ba2e-4185-b8c8-9a60c293f5c7",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "5c734c75-89d8-49ec-9fa8-c48a2a473135",
"catalog_field_id": "0d969c59-a6cf-4950-8c73-338d57fbd918",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2025-11-27T00:06:19.653-08:00",
"created_at": "2025-11-27T00:06:18.916-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "5c734c75-89d8-49ec-9fa8-c48a2a473135",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "0d969c59-a6cf-4950-8c73-338d57fbd918",
"type": "catalog_fields"
}
}
}
}
}