Skip to main content
PUT
/
v1
/
catalog_properties
/
{id}
Update a catalog_property (alias for field)
curl --request PUT \
  --url https://api.rootly.com/v1/catalog_properties/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '
{
  "data": {
    "type": "catalog_properties",
    "attributes": {
      "name": "<string>",
      "kind": "text",
      "kind_catalog_id": "<string>",
      "position": 123,
      "required": true,
      "catalog_type": "catalog"
    }
  }
}
'

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

catalog_property updated