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": "c97f3084-28df-4a8e-85bf-7586e0d90357",
    "type": "catalog_fields",
    "attributes": {
      "catalog_id": "6526eb63-3313-419c-98ee-f77c775af6ec",
      "name": "Updated name",
      "slug": "test",
      "kind": "reference",
      "kind_catalog_id": "6526eb63-3313-419c-98ee-f77c775af6ec",
      "multiple": false,
      "position": 1,
      "deleted_at": null,
      "updated_at": "2025-05-08T00:17:03.021-07:00",
      "created_at": "2025-05-08T00:17:01.587-07:00"
    },
    "relationships": {
      "catalog": {
        "data": {
          "id": "6526eb63-3313-419c-98ee-f77c775af6ec",
          "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

Response

200
application/vnd.api+json
catalog_field updated

The response is of type object.