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": "92bbdc94-a5a2-4685-8d0c-921ca83ca8dd",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "10625c5c-f11c-4202-9fe3-e45723c47155",
      "catalog_field_id": "75d8b033-9819-460c-a132-4b45a89909e1",
      "key": "text",
      "value": "Test EntityProperty",
      "deleted_at": null,
      "updated_at": "2025-05-08T00:16:58.218-07:00",
      "created_at": "2025-05-08T00:16:58.218-07:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "10625c5c-f11c-4202-9fe3-e45723c47155",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "75d8b033-9819-460c-a132-4b45a89909e1",
          "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.