Hello Sailpoint community,
I’m trying to aggregate account and entitlement information from a single CSV file into my Sailpoint account schema. However, I’m running into an issue where I’m only getting unique values of Role, but not referencing to Plan ID.
Here’s a sample of my CSV file:
UserId, LastName, FirstName, Email ID, Plan ID, Attribute
Abc, Last, First, [email protected], A, TeamWorkspace
Abc, Last, First, [email protected], A, ViewData
Abc, Last, First, [email protected], A, Upload file
Abc, Last, First, [email protected], B, TeamWorkspace
Abc, Last, First, [email protected], B, ViewData
Abc, Last, First, [email protected], B, Upload file
My account schema looks like this: [attach screenshot]
I want to aggregate the entitlements (Roles) based on the Plan ID, so that I can properly assign the entitlements to an account. For example, for Plan ID A, I want to assign TeamWorkspace, ViewData, and Upload file entitlements to the account.
Can anyone help me with this? How can I achieve this in Sailpoint?
Expected Output:
For each account, I want to have a list of entitlements (Roles) that are specific to the Plan ID. For example:
- Account: Abc. Last, First ([email protected])
- Plan ID A: TeamWorkspace, ViewData, Upload file
- Plan ID B: TeamWorkspace, ViewData, Upload file
Thank you for your help!