Populate SailPoint's backend values like id, external id for identity?

We are trying to fetch id and external id value for identity and store it in the identity profile of the user. We need this to further store these values in a few target systems to refer to these unique IDs in the future. Is there a way to do it via transform or any other logic directly within IDN?

Hi @sidhantpandey,

You can refer the Identity Attribute context transform

Something like below should fetch you the ID :

{
  "type": "static",
  "attributes": {
    "value": "$identity.getId()"
  }
}

The available methods are mentioned in the Java doc

3 Likes

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