Rule to trim in no Auth attributes?

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
  }
}