Insight Group Insight Types

The following insight group insight types 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 group insight type records using the information below, or using the Functional Setup Manager interface. See Manage Insight Group Insight Types with Functional Setup Manager for additional information.
insightGroup ID insightType
C1XP C1XP_C1PERNONPAYCARD C1-PER-NONPAY-CARD
C1XA C1XA_C1ACCTPASTDUECARD C1-ACCT-PASTDUE-CARD
C1XC C1XC_C1COLLCARD C1-ACCT-COLL-CARD
C1XC C1XC_C1PAYAGREECARD C1-ACCT-PAYAGREE-CARD
C1XC C1XC_C1SEVCARD C1-ACCT-SEV-CARD
C1XA C1XA_CONTRACT_RENEWAL CONTRACT_RENEWAL
C1XP C1XP_CONTRACT_RENEWAL CONTRACT_RENEWAL
C1XA C1XA_C1INACTIVEACCTCARD C1-INACTIVE-ACCT-CARD
C1XP C1XP_C1-PER-COLL-CARD C1-PER-COLL-CARD
C1XA C1XA_C1-ACCT-COLL-CARD C1-ACCT-COLL-CARD
C1PE C1PE_C1APAYENRLLIST C1-APAYENRL-LIST
C1PE C1PE_C1BUDGENRLLIST C1-BUDGENRL-LIST
C1PE C1PE_C1EBILLENRLLIST C1-EBILLENRL-LIST
C1PE C1PE_C1PBILLENRLLIST C1-PBILLENRL-LIST
C1PE C1PE_C1WEBENRLLIST C1-WEBENRL-LIST

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

Task Configuration
Fetch insight grouping

GET /utilitiesAdmin/v1/insightGroupInsightTypes

Example:

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

A specific insight type can be fetched using:

GET /utilitiesAdmin/v1/insightGroupInsightTypes/{id}

Example:

GET https://<hostname>/api/utilitiesAdmin/v1/insightGroupInsightTypes/C1XP_C1PERNONPAYCARD

Edit insight grouping

POST /CXIPlatformService/v1/CXIReferenceEntity/insightGroupInsightTypes

Example:

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

{

"items": [

{

"operation": "update",

"data": {

"id": "C1XP_C1PERNONPAYCARD",

"insightGroup": "C1XP",

"insightType": "C1-PER-NONPAY-CARD"

}

}

]

}
Create insight grouping

POST /CXIPlatformService/v1/CXIReferenceEntity/insightGroupInsightTypes

Example:

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

{

"items": [

{

"operation": "create",

"data": {

"id": "C1XP_C1PERNONPAYCARD",

"insightGroup": "C1XP",

"insightType": "C1-PER-NONPAY-CARD"

}

}

]

}