Aras Innovator Platform

Want the Identities for the User

You want to get the Identity IDs for the User.

Technique

Use the classic Aras Innovator API top.aras.getIdentityList() method, which returns a comma delimited string of IDs.

Note
The classic API will eventually be eliminated, and this method will become available on the IOM Innovator object as Innovator.getIdentityList().

JavaScript

// This will get an array of identity IDs from the client cache
var myIdentityIDs = top.aras.getIdentityList().split(',’);