Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Body
application/vnd.api+json
Response
catalog_entity_property created
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_entity_id": "<string>",
"catalog_field_id": "<string>",
"key": "text",
"value": "<string>"
}
}
}'{
"data": {
"id": "5825d5fc-eeb3-4c25-b5a7-e01615511e9c",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "7f191e20-205e-4de1-855c-14f661f90511",
"catalog_field_id": "22f724b2-6c6a-4d84-ae4f-7a9d3b72e22d",
"key": "text",
"value": "Test EntityProperty",
"deleted_at": null,
"updated_at": "2025-11-21T12:08:14.175-08:00",
"created_at": "2025-11-21T12:08:14.175-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "7f191e20-205e-4de1-855c-14f661f90511",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "22f724b2-6c6a-4d84-ae4f-7a9d3b72e22d",
"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_entity_id": "<string>",
"catalog_field_id": "<string>",
"key": "text",
"value": "<string>"
}
}
}'{
"data": {
"id": "5825d5fc-eeb3-4c25-b5a7-e01615511e9c",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "7f191e20-205e-4de1-855c-14f661f90511",
"catalog_field_id": "22f724b2-6c6a-4d84-ae4f-7a9d3b72e22d",
"key": "text",
"value": "Test EntityProperty",
"deleted_at": null,
"updated_at": "2025-11-21T12:08:14.175-08:00",
"created_at": "2025-11-21T12:08:14.175-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "7f191e20-205e-4de1-855c-14f661f90511",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "22f724b2-6c6a-4d84-ae4f-7a9d3b72e22d",
"type": "catalog_fields"
}
}
}
}
}