Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Resource UUID
Body
application/vnd.api+json
Response
catalog_entity updated
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": "70bc50b3-a611-4a82-90e7-0767b29e60c5",
"type": "catalog_entities",
"attributes": {
"catalog_id": "cee024db-7d65-4e65-baae-fb1d305b29e9",
"name": "Updated name",
"slug": "test",
"position": 1,
"deleted_at": null,
"updated_at": "2025-10-07T17:06:41.185-07:00",
"created_at": "2025-10-07T17:06:40.343-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "cee024db-7d65-4e65-baae-fb1d305b29e9",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Resource UUID
Show child attributes
catalog_entity updated
Show child attributes
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": "70bc50b3-a611-4a82-90e7-0767b29e60c5",
"type": "catalog_entities",
"attributes": {
"catalog_id": "cee024db-7d65-4e65-baae-fb1d305b29e9",
"name": "Updated name",
"slug": "test",
"position": 1,
"deleted_at": null,
"updated_at": "2025-10-07T17:06:41.185-07:00",
"created_at": "2025-10-07T17:06:40.343-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "cee024db-7d65-4e65-baae-fb1d305b29e9",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}