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": "e33641f9-e668-4485-8cd3-8707e9b347fc",
    "type": "catalog_entities",
    "attributes": {
      "catalog_id": "d43b6d8c-3fde-4933-9cee-fe9d04c5f9e4",
      "name": "Updated name",
      "slug": "test",
      "position": 1,
      "deleted_at": null,
      "updated_at": "2025-05-15T16:10:11.954-07:00",
      "created_at": "2025-05-15T16:10:10.518-07:00"
    },
    "relationships": {
      "catalog": {
        "data": {
          "id": "d43b6d8c-3fde-4933-9cee-fe9d04c5f9e4",
          "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.