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": "6bb3a844-52ed-47da-a2f0-bbcb0fa98d37",
"type": "catalog_entities",
"attributes": {
"catalog_id": "6ea40286-9163-4584-b182-d726f6d6f530",
"name": "Updated name",
"slug": "test",
"position": 1,
"deleted_at": null,
"updated_at": "2025-09-16T17:10:26.039-07:00",
"created_at": "2025-09-16T17:10:24.856-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "6ea40286-9163-4584-b182-d726f6d6f530",
"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": "6bb3a844-52ed-47da-a2f0-bbcb0fa98d37",
"type": "catalog_entities",
"attributes": {
"catalog_id": "6ea40286-9163-4584-b182-d726f6d6f530",
"name": "Updated name",
"slug": "test",
"position": 1,
"deleted_at": null,
"updated_at": "2025-09-16T17:10:26.039-07:00",
"created_at": "2025-09-16T17:10:24.856-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "6ea40286-9163-4584-b182-d726f6d6f530",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}