Skip to main content
POST
/
v1
/
catalog_entities
/
{catalog_entity_id}
/
properties
Creates a Catalog Entity Property
curl --request POST \
  --url https://api.rootly.com/v1/catalog_entities/{catalog_entity_id}/properties \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '
{
  "data": {
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_field_id": "<string>",
      "key": "text",
      "value": "<string>",
      "catalog_entity_id": "<string>"
    }
  }
}
'
{
  "data": {
    "id": "6c49da0e-e053-4c4f-ad1e-c35024bb0d9e",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "bf93c1f8-5da4-4f2a-85e9-c88b6dda5809",
      "catalog_field_id": "c8224735-039f-46c3-9a8a-2ec9a72f466c",
      "key": "text",
      "value": "Test EntityProperty",
      "deleted_at": null,
      "updated_at": "2026-02-10T11:58:27.206-08:00",
      "created_at": "2026-02-10T11:58:27.206-08:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "bf93c1f8-5da4-4f2a-85e9-c88b6dda5809",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "c8224735-039f-46c3-9a8a-2ec9a72f466c",
          "type": "catalog_fields"
        }
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

catalog_entity_id
string
required

Body

application/vnd.api+json
data
object
required

Response

catalog_entity_property created

data
object
required