Skip to main content
POST
/
v1
/
catalogs
/
{catalog_id}
/
properties
Creates a Catalog Property (alias for field)
curl --request POST \
  --url https://api.rootly.com/v1/catalogs/{catalog_id}/properties \
  --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>",
      "multiple": true,
      "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

catalog_id
string
required

Body

application/vnd.api+json

A catalog can have a maximum of 50 fields.

data
object
required

Response

201

catalog_property created