PUT
/
v1
/
catalogs
/
{id}
curl --request PUT \
  --url https://api.rootly.com/v1/catalogs/%7Bid%7D \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \
  --header 'content-type: application/vnd.api+json'
{
  "data": {
    "id": "b29017f3-749c-4ff3-981e-6f3ec8fcc294",
    "type": "catalogs",
    "attributes": {
      "name": "Services",
      "slug": "services",
      "icon": "globe-alt",
      "description": "Updated description",
      "position": 1,
      "deleted_at": null,
      "updated_at": "2025-03-13T11:59:27.260-07:00",
      "created_at": "2025-03-13T11:59:25.962-07:00"
    },
    "relationships": {
      "fields": {
        "data": []
      },
      "entities": {
        "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 updated
data
object
required