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": "584b3fee-0dd6-4919-aaa8-f599bcd2c288",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "c58c3424-80d2-4fdf-9d04-4328918588c4",
"catalog_field_id": "213f55f3-25ce-4971-9059-eb50a8b306c5",
"key": "text",
"value": "Test EntityProperty",
"deleted_at": null,
"updated_at": "2025-10-30T10:23:34.474-07:00",
"created_at": "2025-10-30T10:23:34.474-07:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "c58c3424-80d2-4fdf-9d04-4328918588c4",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "213f55f3-25ce-4971-9059-eb50a8b306c5",
"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": "584b3fee-0dd6-4919-aaa8-f599bcd2c288",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "c58c3424-80d2-4fdf-9d04-4328918588c4",
"catalog_field_id": "213f55f3-25ce-4971-9059-eb50a8b306c5",
"key": "text",
"value": "Test EntityProperty",
"deleted_at": null,
"updated_at": "2025-10-30T10:23:34.474-07:00",
"created_at": "2025-10-30T10:23:34.474-07:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "c58c3424-80d2-4fdf-9d04-4328918588c4",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "213f55f3-25ce-4971-9059-eb50a8b306c5",
"type": "catalog_fields"
}
}
}
}
}