Getting Started with SailPoint IIQ Development

Guess, I need to work on blog for Kick start your career with SailPoint IIQ and IDNow

5 Likes

Nice article. Can you please let me know do we have similar post for provisioning as well how it works based on workflows.

Regards,
Dhana

1 Like

Your contribution to the community is invaluable because there are a lot of documents and other sources that people hardly go through, especially in the initial phase. Your article, in contrast, is interesting and easy to learn from.

Nicely written, @KRM7
It is very helpful.

Thank you so much Krishna. It’s very useful

Hi @KRM7

Thank you for the clear explanation. I’ve begun coding and practicing with the help of your blog. Your article has given me greater confidence to start exploring.

Thanks @KRM7 . However in the beginning itself nothing is coming while running rule, am I doing some mistake ?

This is the rule which you have made. I have just changed user name to 1001

<?xml version='1.0' encoding='UTF-8'?> import sailpoint.object.Identity; //Import Identity class

Identity identity = context.getObjectByName(Identity.class,“1001”); //construct identity object

String firstName = identity.getAttribute(“firstname”);
String lastName = identity.getAttribute(“lastname”);
String email = identity.getAttribute(“email”);

log.error(“first name is ::”+firstName);
log.error(“last name is ::”+lastName);
log.error(“email is ::”+email);

return firstName + “\n” + lastName + “\n” + email;

You need to check attribute names, case sensitivity might be the problem here.

Attribute names are correct, still no output :pensive_face:

@ AB - Share Identity 1001 object details here.

Thank you! This advice is exactly what I was looking for.