cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

IdentityNow Transforms - Lower

IdentityNow Transforms - Lower

The transform documentation listed here is outdated and is nonger actively maintained. Please refer to https://developer.sailpoint.com/idn/docs/transforms for IdentityNow Transform documentation.

Labels (1)
Comments

@hari_patel  I am getting error  "Required field \"attributes\" was missing or empty", if we try to create transform without attributes, I want to provide input directly from UI. 

@sbhingare I'm not sure I understand your use case here. If you want just a simple "toLower()" transform, that is already available out-of-the-box. It's the "ToLower" option from your Transform dropdown in the identity profile mappings UI.

If you're attempting to transform an attribute to lower case after executing some other operation(s) on it, then those nested transforms would flow up through the "input" parameter of your attributes map:

{
  "attributes": {
    "input": {
      "attributes": {
        "table": {
          "[.]": "-"
        }
      },
    "type": "replaceAll"
    }
  },
  "type": "lower",
  "name": "Test Lower Transform"
}

 

In the above example, if the attribute selected in the UI would automatically get passed into the "replaceAll" transform, which would replace any periods with hyphens, and then the outer "lower" transform would convert the string into all lowercase letters. so, something like "Smith.Jones" would render as "smith-jones" when passed through this complex transform.

Thanks @hari_patel,  I didn't know that ToLower is already available OOTB. I was trying to create similar transform.   

Version history
Revision #:
4 of 4
Last update:
‎May 01, 2023 09:35 PM
Updated by: