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": "f35ad187-d15a-4f1e-b663-ed4c403ab6dd",
    "type": "catalog_fields",
    "attributes": {
      "catalog_id": "616d79c1-7aab-4cb5-8e6d-c633c2da4ff9",
      "name": "Updated name",
      "slug": "test",
      "kind": "reference",
      "kind_catalog_id": "616d79c1-7aab-4cb5-8e6d-c633c2da4ff9",
      "multiple": false,
      "position": 1,
      "deleted_at": null,
      "updated_at": "2025-03-19T17:36:38.166-07:00",
      "created_at": "2025-03-19T17:36:36.797-07:00"
    },
    "relationships": {
      "catalog": {
        "data": {
          "id": "616d79c1-7aab-4cb5-8e6d-c633c2da4ff9",
          "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