PUT
/
v1
/
catalogs
/
{id}
curl --request PUT \
  --url https://api.rootly.com/v1/catalogs/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "catalogs",
    "attributes": {
      "name": "<string>",
      "description": "<string>",
      "icon": "globe-alt",
      "position": 123
    }
  }
}'
{
  "data": {
    "id": "ef8e7a66-939a-44ab-a2b3-2438796ca64b",
    "type": "catalogs",
    "attributes": {
      "name": "Services",
      "slug": "services",
      "icon": "globe-alt",
      "description": "Updated description",
      "position": 1,
      "deleted_at": null,
      "updated_at": "2025-03-26T23:18:12.461-07:00",
      "created_at": "2025-03-26T23:18:11.127-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