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": "9df7711c-f94d-4b59-8637-e74a309f2b0a",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "a2bfb0ac-5caa-488f-9deb-63d023ed9936",
      "catalog_field_id": "27f19321-d0e3-44e1-b882-75414fb3b374",
      "key": "text",
      "value": "Test EntityProperty",
      "deleted_at": null,
      "updated_at": "2025-04-18T18:15:47.615-07:00",
      "created_at": "2025-04-18T18:15:47.615-07:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "a2bfb0ac-5caa-488f-9deb-63d023ed9936",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "27f19321-d0e3-44e1-b882-75414fb3b374",
          "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