POST
/
v1
/
catalog_entities
/
{catalog_entity_id}
/
properties
curl --request POST \
  --url https://api.rootly.com/v1/catalog_entities/%7Bcatalog_entity_id%7D/properties \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \
  --header 'content-type: application/vnd.api+json'
{
  "data": {
    "id": "be8a1f28-3362-46b3-9fd6-4d68f0e7dbe7",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "b221ecd8-41fc-43e4-917c-b5f89f8ef846",
      "catalog_field_id": "15cd7493-406f-47ff-811a-c4a143b82cbb",
      "key": "text",
      "value": "Test EntityProperty",
      "deleted_at": null,
      "updated_at": "2025-03-13T11:59:19.633-07:00",
      "created_at": "2025-03-13T11:59:19.633-07:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "b221ecd8-41fc-43e4-917c-b5f89f8ef846",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "15cd7493-406f-47ff-811a-c4a143b82cbb",
          "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

201
application/vnd.api+json
catalog_entity_property created
data
object
required