PUT
/
v1
/
catalog_entities
/
{id}
Update a Catalog Entity
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": []
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
required

Resource UUID

Body

application/vnd.api+json
data
object
required

Response

catalog_entity updated

data
object
required