Skip to main content
PUT
/
v1
/
catalog_fields
/
{id}
Update a catalog_field
curl --request PUT \
  --url https://api.rootly.com/v1/catalog_fields/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '
{
  "data": {
    "type": "catalog_fields",
    "attributes": {
      "name": "<string>",
      "slug": "<string>",
      "kind": "text",
      "kind_catalog_id": "<string>",
      "position": 123
    }
  }
}
'
{
  "data": {
    "id": "783c4c92-a7ef-4d63-b9a4-9b6747426ff2",
    "type": "catalog_fields",
    "attributes": {
      "catalog_id": "21b96a6b-9ec0-4085-8753-6a8ad102cedd",
      "name": "Updated name",
      "slug": "test",
      "kind": "reference",
      "kind_catalog_id": "21b96a6b-9ec0-4085-8753-6a8ad102cedd",
      "multiple": false,
      "position": 1,
      "deleted_at": null,
      "updated_at": "2026-01-15T23:00:37.509-08:00",
      "created_at": "2026-01-15T23:00:36.638-08:00"
    },
    "relationships": {
      "catalog": {
        "data": {
          "id": "21b96a6b-9ec0-4085-8753-6a8ad102cedd",
          "type": "catalogs"
        }
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
required

Resource UUID

Body

application/vnd.api+json
data
object
required

Response

catalog_field updated

data
object
required