PUT
/
v1
/
catalog_fields
/
{id}
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": "c969eccd-9398-4f10-b67c-03c5733be166",
    "type": "catalog_fields",
    "attributes": {
      "catalog_id": "0ed752f4-5530-42b1-84b2-7ed3b76f569e",
      "name": "Updated name",
      "slug": "test",
      "kind": "reference",
      "kind_catalog_id": "0ed752f4-5530-42b1-84b2-7ed3b76f569e",
      "multiple": false,
      "position": 1,
      "deleted_at": null,
      "updated_at": "2025-04-18T09:45:24.525-07:00",
      "created_at": "2025-04-18T09:45:23.097-07:00"
    },
    "relationships": {
      "catalog": {
        "data": {
          "id": "0ed752f4-5530-42b1-84b2-7ed3b76f569e",
          "type": "catalogs"
        }
      }
    }
  }
}

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_field updated
data
object
required