Creates a new Catalog Entity Property from provided data.
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_field_id": "<string>",
"key": "text",
"value": "<string>",
"catalog_entity_id": "<string>"
}
}
}
'{
"data": {
"id": "6c49da0e-e053-4c4f-ad1e-c35024bb0d9e",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "bf93c1f8-5da4-4f2a-85e9-c88b6dda5809",
"catalog_field_id": "c8224735-039f-46c3-9a8a-2ec9a72f466c",
"key": "text",
"value": "Test EntityProperty",
"deleted_at": null,
"updated_at": "2026-02-10T11:58:27.206-08:00",
"created_at": "2026-02-10T11:58:27.206-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "bf93c1f8-5da4-4f2a-85e9-c88b6dda5809",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "c8224735-039f-46c3-9a8a-2ec9a72f466c",
"type": "catalog_fields"
}
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
catalog_entity_property created
Show child attributes
Was this page helpful?
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_field_id": "<string>",
"key": "text",
"value": "<string>",
"catalog_entity_id": "<string>"
}
}
}
'{
"data": {
"id": "6c49da0e-e053-4c4f-ad1e-c35024bb0d9e",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "bf93c1f8-5da4-4f2a-85e9-c88b6dda5809",
"catalog_field_id": "c8224735-039f-46c3-9a8a-2ec9a72f466c",
"key": "text",
"value": "Test EntityProperty",
"deleted_at": null,
"updated_at": "2026-02-10T11:58:27.206-08:00",
"created_at": "2026-02-10T11:58:27.206-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "bf93c1f8-5da4-4f2a-85e9-c88b6dda5809",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "c8224735-039f-46c3-9a8a-2ec9a72f466c",
"type": "catalog_fields"
}
}
}
}
}