PUT
/
v1
/
catalog_entities
/
{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": "c1847c16-b633-460a-9632-e5795518b95c",
    "type": "catalog_entities",
    "attributes": {
      "catalog_id": "86080670-a0ab-49cd-98cf-1de45043f840",
      "name": "Updated name",
      "slug": "test",
      "position": 1,
      "deleted_at": null,
      "updated_at": "2025-06-19T06:29:38.414-07:00",
      "created_at": "2025-06-19T06:29:37.259-07:00"
    },
    "relationships": {
      "catalog": {
        "data": {
          "id": "86080670-a0ab-49cd-98cf-1de45043f840",
          "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

Response

200
application/vnd.api+json

catalog_entity updated

The response is of type object.