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": "1b214a76-1487-4be4-bc39-cca1bb62bc8f",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "387b91d2-8fd3-4122-a69e-6784fc74ca3a",
      "catalog_field_id": "775b322d-8c10-4073-886d-33fd2666ca54",
      "key": "text",
      "value": "Test EntityProperty",
      "deleted_at": null,
      "updated_at": "2025-06-19T04:11:53.979-07:00",
      "created_at": "2025-06-19T04:11:53.979-07:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "387b91d2-8fd3-4122-a69e-6784fc74ca3a",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "775b322d-8c10-4073-886d-33fd2666ca54",
          "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.