PUT
/
v1
/
catalog_entities
/
{id}
curl --request PUT \
  --url https://api.rootly.com/v1/catalog_entities/%7Bid%7D \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \
  --header 'content-type: application/vnd.api+json'
{
  "data": {
    "id": "0ff5f77c-8254-421f-9de6-8d916fd98858",
    "type": "catalog_entities",
    "attributes": {
      "catalog_id": "b2c10923-e17f-4722-8915-651b638d128b",
      "name": "Updated name",
      "slug": "test",
      "position": 1,
      "deleted_at": null,
      "updated_at": "2025-03-13T11:59:17.496-07:00",
      "created_at": "2025-03-13T11:59:15.669-07:00"
    },
    "relationships": {
      "catalog": {
        "data": {
          "id": "b2c10923-e17f-4722-8915-651b638d128b",
          "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
string
required

Body

application/vnd.api+json
data
object
required

Response

200
application/vnd.api+json
catalog_entity updated
data
object
required