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": "5e94e7dc-2a9b-4726-afe7-d671d3a8ed05",
"type": "catalog_entities",
"attributes": {
"catalog_id": "4feede10-55d6-4568-947a-02c35c3ff68d",
"name": "Updated name",
"slug": "test",
"position": 1,
"deleted_at": null,
"updated_at": "2025-09-11T13:24:58.815-07:00",
"created_at": "2025-09-11T13:24:58.005-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "4feede10-55d6-4568-947a-02c35c3ff68d",
"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": "5e94e7dc-2a9b-4726-afe7-d671d3a8ed05",
"type": "catalog_entities",
"attributes": {
"catalog_id": "4feede10-55d6-4568-947a-02c35c3ff68d",
"name": "Updated name",
"slug": "test",
"position": 1,
"deleted_at": null,
"updated_at": "2025-09-11T13:24:58.815-07:00",
"created_at": "2025-09-11T13:24:58.005-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "4feede10-55d6-4568-947a-02c35c3ff68d",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}