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": "e3eaa2bd-aff1-400d-bd07-91304b590598",
    "type": "catalog_entities",
    "attributes": {
      "catalog_id": "6a78a3fa-a50e-496b-850d-0711fe5f7427",
      "name": "Updated name",
      "slug": "test",
      "position": 1,
      "deleted_at": null,
      "updated_at": "2025-03-19T17:36:31.133-07:00",
      "created_at": "2025-03-19T17:36:29.725-07:00"
    },
    "relationships": {
      "catalog": {
        "data": {
          "id": "6a78a3fa-a50e-496b-850d-0711fe5f7427",
          "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