Overview
Reference
- AlertEvents
- AlertGroups
- AlertUrgencies
- AlertSources
- Alerts
- Audits
- Authorizations
- CatalogEntities
- CatalogEntityProperties
- CatalogFields
- Catalogs
- Causes
- [DEPRECATED] CustomFieldOptions
- [DEPRECATED] CustomFields
- CustomForms
- DashboardPanels
- Dashboards
- Environments
- EscalationPolicies
- EscalationLevelsPolicies
- EscalationLevelsPath
- EscalationLevels
- EscalationPaths
- FormFieldOptions
- FormFieldPlacementConditions
- FormFieldPlacements
- FormFieldPositions
- FormFields
- FormSetConditions
- FormSets
- Functionalities
- WorkflowTasks
- [DEPRECATED] WorkflowCustomFieldSelections
- WorkflowFormFieldConditions
- WorkflowGroups
- WorkflowRuns
- Workflows
- Heartbeats
- IncidentActionItems
- [DEPRECATED] IncidentCustomFieldSelections
- IncidentEventFunctionalities
- IncidentEventServices
- IncidentEvents
- IncidentFeedbacks
- IncidentFormFieldSelections
- IncidentPermissionSetBooleans
- IncidentPermissionSetResources
- IncidentPermissionSets
- IncidentRetrospectives
- IncidentRetrospectiveSteps
- IncidentRoleTasks
- IncidentRoles
- IncidentStatusPageEvents
- IncidentSubStatuses
- IncidentTypes
- Incidents
- IpRanges
- LiveCallRouters
- OnCallRoles
- OnCallShadows
- OverrideShifts
- PlaybookTasks
- Playbooks
- RetrospectiveTemplates
- Pulses
- RetrospectiveConfigurations
- RetrospectiveProcessGroupSteps
- RetrospectiveProcessGroups
- RetrospectiveProcesses
- RetrospectiveSteps
- Roles
- ScheduleRotationActiveDays
- ScheduleRotationUsers
- ScheduleRotations
- Schedules
- Shifts
- Secrets
- Services
- Severities
- StatusPageTemplates
- StatusPages
- SubStatuses
- Teams
- UserNotificationRules
- Users
- WebhooksDeliveries
- WebhooksEndpoints
CatalogEntityProperties
Creates a catalog_entity_property
CatalogEntityProperties
Creates a catalog_entity_property
Creates a new catalog_entity_property from provided data
POST
/
v1
/
catalog_entities
/
{catalog_entity_id}
/
properties
curl --request POST \
--url https://api.rootly.com/v1/catalog_entities/%7Bcatalog_entity_id%7D/properties \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \
--header 'content-type: application/vnd.api+json'
{
"data": {
"id": "be8a1f28-3362-46b3-9fd6-4d68f0e7dbe7",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "b221ecd8-41fc-43e4-917c-b5f89f8ef846",
"catalog_field_id": "15cd7493-406f-47ff-811a-c4a143b82cbb",
"key": "text",
"value": "Test EntityProperty",
"deleted_at": null,
"updated_at": "2025-03-13T11:59:19.633-07:00",
"created_at": "2025-03-13T11:59:19.633-07:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "b221ecd8-41fc-43e4-917c-b5f89f8ef846",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "15cd7493-406f-47ff-811a-c4a143b82cbb",
"type": "catalog_fields"
}
}
}
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/vnd.api+json
Available options:
catalog_entity_properties
Response
201
application/vnd.api+json
catalog_entity_property created
Unique ID of the catalog_entity_property
Available options:
catalog_entity_properties
Available options:
text
, catalog_entity
curl --request POST \
--url https://api.rootly.com/v1/catalog_entities/%7Bcatalog_entity_id%7D/properties \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \
--header 'content-type: application/vnd.api+json'
{
"data": {
"id": "be8a1f28-3362-46b3-9fd6-4d68f0e7dbe7",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "b221ecd8-41fc-43e4-917c-b5f89f8ef846",
"catalog_field_id": "15cd7493-406f-47ff-811a-c4a143b82cbb",
"key": "text",
"value": "Test EntityProperty",
"deleted_at": null,
"updated_at": "2025-03-13T11:59:19.633-07:00",
"created_at": "2025-03-13T11:59:19.633-07:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "b221ecd8-41fc-43e4-917c-b5f89f8ef846",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "15cd7493-406f-47ff-811a-c4a143b82cbb",
"type": "catalog_fields"
}
}
}
}
}