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": "712072dd-fd85-4ef4-8a50-78890e1e528d",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "c666481e-8f43-4d93-82ae-a077ce09529a",
"catalog_field_id": "cfc0fb37-ffdf-461a-b88e-3308724cd91f",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2025-09-16T17:10:28.724-07:00",
"created_at": "2025-09-16T17:10:27.885-07:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "c666481e-8f43-4d93-82ae-a077ce09529a",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "cfc0fb37-ffdf-461a-b88e-3308724cd91f",
"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": "712072dd-fd85-4ef4-8a50-78890e1e528d",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "c666481e-8f43-4d93-82ae-a077ce09529a",
"catalog_field_id": "cfc0fb37-ffdf-461a-b88e-3308724cd91f",
"key": "text",
"value": "Updated value",
"deleted_at": null,
"updated_at": "2025-09-16T17:10:28.724-07:00",
"created_at": "2025-09-16T17:10:27.885-07:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "c666481e-8f43-4d93-82ae-a077ce09529a",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "cfc0fb37-ffdf-461a-b88e-3308724cd91f",
"type": "catalog_fields"
}
}
}
}
}