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_entity_id": "<string>",
      "catalog_field_id": "<string>",
      "key": "text",
      "value": "<string>"
    }
  }
}'
{
  "data": {
    "id": "5825d5fc-eeb3-4c25-b5a7-e01615511e9c",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "7f191e20-205e-4de1-855c-14f661f90511",
      "catalog_field_id": "22f724b2-6c6a-4d84-ae4f-7a9d3b72e22d",
      "key": "text",
      "value": "Test EntityProperty",
      "deleted_at": null,
      "updated_at": "2025-11-21T12:08:14.175-08:00",
      "created_at": "2025-11-21T12:08:14.175-08:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "7f191e20-205e-4de1-855c-14f661f90511",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "22f724b2-6c6a-4d84-ae4f-7a9d3b72e22d",
          "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