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": "b90b73ac-3fde-4679-ba26-c44b1ad44ac2",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "dae2eeb1-5f13-44af-9a33-001cbf04c4b7",
      "catalog_field_id": "5b1739fb-10c3-4ac9-adf8-553cf49d19eb",
      "key": "text",
      "value": "Test EntityProperty",
      "deleted_at": null,
      "updated_at": "2025-07-20T00:36:34.271-07:00",
      "created_at": "2025-07-20T00:36:34.271-07:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "dae2eeb1-5f13-44af-9a33-001cbf04c4b7",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "5b1739fb-10c3-4ac9-adf8-553cf49d19eb",
          "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

Response

201
application/vnd.api+json

catalog_entity_property created

The response is of type object.