Update a specific Catalog Entity by id
curl --request PUT \
--url https://api.rootly.com/v1/catalog_entities/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "catalog_entities",
"attributes": {
"name": "<string>",
"description": "<string>",
"position": 123
}
}
}'
{
"data": {
"id": "8e467ae6-5a5e-4537-9c6b-b202470a5fd6",
"type": "catalog_entities",
"attributes": {
"catalog_id": "947a508f-2b5d-4a13-a5d6-6c6ab5ee9e51",
"name": "Updated name",
"slug": "test",
"position": 1,
"deleted_at": null,
"updated_at": "2025-08-21T23:41:22.297-07:00",
"created_at": "2025-08-21T23:41:21.520-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "947a508f-2b5d-4a13-a5d6-6c6ab5ee9e51",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Resource UUID
catalog_entity updated
The response is of type object
.
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/catalog_entities/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "catalog_entities",
"attributes": {
"name": "<string>",
"description": "<string>",
"position": 123
}
}
}'
{
"data": {
"id": "8e467ae6-5a5e-4537-9c6b-b202470a5fd6",
"type": "catalog_entities",
"attributes": {
"catalog_id": "947a508f-2b5d-4a13-a5d6-6c6ab5ee9e51",
"name": "Updated name",
"slug": "test",
"position": 1,
"deleted_at": null,
"updated_at": "2025-08-21T23:41:22.297-07:00",
"created_at": "2025-08-21T23:41:21.520-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "947a508f-2b5d-4a13-a5d6-6c6ab5ee9e51",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}