Rule to trim in no Auth attributes?

Hey all,

I just want to confirm or get any ideas on what is they best way to take a downstream source like SF and trim the Account attribute to exclude the @XXXX.com on it so i can have the front show as a username and then correlate on it.

Would a before rule be best or a transform on the Identity profile using a extra attribute. I can not get the app to clean up date right now and i have to do it hopefully in IDN so i can corrlate the accounts

Hi @VBsupport ,

Yes, you can create a new identity attribute to fetch this value. For this attribute you can use the split transform: Split | SailPoint Developer Community.

Assuming your attribute values are - [email protected], below transform should give you result: abc

{
  "type": "split",
  "name": "Split Transform",
  "attributes": {
    "values": [
        {
            "attributes": {
                "attributeName": "<ATTRNAME>",
                "sourceName": "<SOURCENAME>"
            },
            "type": "accountAttribute"
        },
    ],
   "delimiter": "@",
   "index": 0,
   "throws": true
  }
}

Hi @VBsupport,

To transform the value to correlate the account with identity will require correlation rule as transform on identity attribute will be used after correlating the account.

Thanks.

You can use the correlation rule to modify an account attribute and then try to find a match among identity attribute values

1 Like

the best option is @iamnithesh one or you can have a identity Attribute generating the same value as the needed on the source, for correlation.

best!

1 Like

For a new account on a request that all makes sense but if I am pulling in accounts that are already on the source how does adding this to the create policy work since its already there. I would think a build map or something, but this is not a JDBC, and a direct Salesforce connects as well rules for IDN are still really confusing to me.

If the account comes in I would just want to remove that information on ISC and not the source so it can correlate.

Hi @VBsupport You can utilize a transform to generate an identity attribute and perform a write-back to the source using an additional attribute and add that to your correlation rule.

1 Like

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.