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": "0c4a5b43-3aaf-4182-8f55-952c7c9b920b",
    "type": "catalog_entities",
    "attributes": {
      "catalog_id": "dc64cdf7-d00c-4643-9a47-b2704ddc5a1b",
      "name": "Updated name",
      "slug": "test",
      "position": 1,
      "deleted_at": null,
      "updated_at": "2025-05-06T14:31:51.542-07:00",
      "created_at": "2025-05-06T14:31:50.101-07:00"
    },
    "relationships": {
      "catalog": {
        "data": {
          "id": "dc64cdf7-d00c-4643-9a47-b2704ddc5a1b",
          "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