Landing Page Role Priority

If a user has multiple roles, the system uses the priorities assigned to each role to decide which landing page the user sees based on the priority assigned for each of the user's roles. You can use the default role priorities, or you can change the priorities using the information in this section.

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

Task Configuration Comments
Get Page Priorities

GET /utilitiesAdmin/v1/landingPageRolePriority

Example:

GET https://<hostname>/api/utilitiesAdmin/v1/landingPageRolePriority?orderBy=pagePriority:asc

A specific role priority can be fetched using:

GET /utilitiesAdmin/v1/landingPageRolePriority/{id}

Example:

GET https://<hostname>/api/utilitiesAdmin/v1/landingPageRolePriority/ORA_UER_UTILITIES_CUSTOMER_SERVICE_REPRESENTATIVE

 
Modify priority

POST /CXIPlatformService/v1/CXIReferenceEntity/landingPageRolePriority

Example:

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

{
 "items": [
 {
 "operation": "update",
 "data": {
 "id": "ORA_UER_UTILITIES_CUSTOMER_SERVICE_MANAGER",
 "pagePriority": 1
 }
 }
 ]
}
Multiple roles can be added at the same time by adding them to the "items" list in the request.