Insight Severity

The following insight severity records are delivered with the solution. You can modify these values or add new values as needed, using the information below. All records are delivered inactive.

Note:

You can now manage insight severity records using the information below, or using the Functional Setup Manager interface. See Manage Insight Severity with Functional Setup Manager for additional information.
Severity Default Style Active Description Rank ID
F1IN info false Information 30 F1IN
F1WN warning false Warning 20 F1WN
F1ER error false Critical 10 F1ER

This table provides additional details on the tasks you can complete.

Note:

Be aware that description is a translatable field, so the description values should be maintained in the relevant lookup code created under the lookup type ORA_UER_ INSIGHT_ SEVERITY if your implementation requires more than one language.
Task Configuration
Fetch insight severity

GET /utilitiesAdmin/v1/insightSeverity

Example:

GET https://<hostname>/api/utilitiesAdmin/v1/insightSeverity

A specific insight severity can be fetched using:

GET /utilitiesAdmin/v1/insightSeverity/{id}

Example:

GET https://<hostname>/api/utilitiesAdmin/v1/insightSeverity/F1IN

Edit insight severity

POST /CXIPlatformService/v1/CXIReferenceEntity/insightSeverity

Example:

POST https://<hostname>/api/CXIPlatformService/v1/CXIReferenceEntity/insightSeverity

{

"items": [

{

"operation": "update",

"data": {

"id": "F1ER",

"defaultStyle": "error",

"active": true

}

}

]

}

You can also update multiple records in the same request.

Example:

{

"items": [

{

"operation": "update",

"data": {

"id": "F1ER",

"defaultStyle": "error",

"active": true

}

},

{

"operation": "update",

"data": {

"id": "F1IN",

"defaultStyle": "info",

"active": true

}

}

]

}
Create new insight severity

POST /CXIPlatformService/v1/CXIReferenceEntity/insightSeverity

Example:

POST https://<hostname>/api/CXIPlatformService/v1/CXIReferenceEntity/insightSeverity

{

"items": [

{

"operation": "create",

"data": {

"defaultStyle": "error",

"active": true,

"rank": 30,

"id": "CRIT",

"description": "ORA_UER_INSIGHT_SEV_CRIT" //Lookup Code

}

}

]

}

You can create multiple records in the same request.

Example:

{

"items": [

{

"operation": "create",

"data": {

"defaultStyle": "error",

"active": true,

"rank": 30,

"id": "CRIT",

"description": "ORA_UER_INSIGHT_SEV_CRIT" //Lookup Code

}

},

{

"operation": "create",

"data": {

"defaultStyle": "error",

"active": true,

"rank": 40,

"id": "DRIT",

"description": "ORA_UER_INSIGHT_SEV_DRIT" //Lookup Code

}

}

]

}