POST
/
v1
/
catalog_entities
/
{catalog_entity_id}
/
properties
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": "4250a1c1-896d-49a7-81f0-3e44d016a001",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "8cf96db1-4bcf-4cd3-8f7f-2e14395a0d82",
      "catalog_field_id": "f98fa689-3e68-4a9b-b344-f07d798ba6d1",
      "key": "text",
      "value": "Test EntityProperty",
      "deleted_at": null,
      "updated_at": "2025-06-30T14:28:53.184-07:00",
      "created_at": "2025-06-30T14:28:53.184-07:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "8cf96db1-4bcf-4cd3-8f7f-2e14395a0d82",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "f98fa689-3e68-4a9b-b344-f07d798ba6d1",
          "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.