Free Practice Questions for the SailPoint Identity Security Engineer IdentityIQ-Engineer Exam (2026 Updated)
At Marks4sure, we are dedicated to providing IT professionals with the most accurate and reliable preparation materials for the SailPoint IdentityIQ-Engineer exam. To support your certification journey, we have made a selection of our premium 2026 Identity Security Engineer practice questions and answers available completely free. You can take this practice test as many times as you need. Every question includes a detailed, expertly verified explanation to ensure you fully grasp the core security concepts before test day.
The engineer is working on a workflow implementation.
After a form step, the workflow can transition to three steps:
Stop if the Reject (back) button is used,
Audit if the Approve (next) button is used and the field named comment is returned from the form to the workflow variable comment and has a value,
Provision otherwise.
The engineer writes the transitions in XML code.
Is this a valid implementation?
Proposed Solution:
< Transition >
< Source >
if (!approved) return " Stop " ;
if (comment) return " Audit " ;
return " Provision " ;
< /Source >
< /Transition >
Is the following statement about workflow step types and their usage true?
Solution: When a wait step is encountered in a foreground workflow, the user will notice this, because the screen will freeze for the specified number of seconds.
Is this a default functionality of the Lifecycle Manager (LCM) module?
Solution: Terminate Identity
Is this a true statement about localization support in IdentitylQ?
Solution: The default language can be changed from English by replacing the appropriate message files.
A customer wants to make changes in their IdentityIQ user interface.
Consider branding and other IdentityIQ UI changes. Is this statement valid?
Proposed Solution:
If SailPoint is removed from the header bar, “Powered by SailPoint IdentityIQ” must be added to the copyright footer.
Is the following statement about IdentitylQ rule inputs and outputs correct?
Solution: The lypical input variables for a rule are listed in the BeanShell rule editor in IdentitylQ, based on the rule registry.
The engineer is configuring a new application definition.
The customer wants an Audit record to be created with the error message, if provisioning fails.
Is this the rule an engineer should write to accomplish the goal?
Solution: Configure a Postlterate rule
Is this a purpose of an IdentitylQ certification?
Solution: to attest to a user ' s integrity
Is this statement true about certifications?
Solution: All certifications include generation, the active period, sign-off, and the end period.
Is this statement correct about writing and executing source mapping rules to populate identity attributes?
Solution: The Identity object is passed to the rule.
Is the following true of Identity Provisioning Policies?
Solution: Identity Provisioning Policies can be used to include allowed-values definitions or validation logic on fields so that only valid/authorized values can be specified for those fields when using the Create Identity feature to add an identity.
The engineer is working on a workflow implementation.
After a form step, the workflow can transition to three steps:
Stop if the Reject (back) button is used,
Audit if the Approve (next) button is used and the field named comment is returned from the form to the workflow variable comment and has a value,
Provision otherwise.
The engineer writes the transitions in XML code.
Is this a valid implementation?
Proposed Solution:
< Transition to= " Stop " when= " !ref:approved " / >
< Transition to= " Audit " when= " script:sailpoint.tools.Util.isNotNullOrEmpty(comment); " / >
< Transition to= " Provision " / >
IdentityIQ has been installed and set up with the contents of IdentityExtended.hbm.xml.
Is this a correct statement about the installation?
Proposed Solution:
An unlimited number of additional searchable placeholder extended attributes can be added to this installation beyond the 10 shown.
Is the following statement about workflows and sub-workflows (subprocesses) true?
Proposed Solution:
The outputs of a subprocess (sub-workflow) can be returned to variables in the calling workflow using the returns attribute of the calling step.
For example:
< Step icon= " Task " name= " Initialize " posX= " 134 " posY= " 10 "
returns= " identityRequestId,project " send= " identityName,plan " >
...
Is this a default functionality of the Lifecycle Manager (LCM) module?
Proposed Solution:
Launch Certification Campaign
A client needs a custom quicklink, which only managers can launch, in order to launch a simple workflow. Is this a valid step to take during the development of this custom quicklink?
Solution: Insert the " Managers " quicklink population as the dynamic scope in the quicklink object.
An implementation engineer needs to perform an upgrade of IdentitylQ between releases. Is the following statement true?
Solution: Every version release (excluding patch releases) between the current version of IdentitylQ and the target version of IdentitylQ must be installed in sequential order for an upgrade.
An organization is making a change at the regional level.
Many users of a financial system have incorrect entitlements. Some users are missing entitlements, and some users have excess entitlements. Work needs to be performed to clean up access.
Is this one of the IdentuylQ batch request types that can help meet this goal?
Solution: Delete Entitlement
Is the following statement about IdentityIQ rule inputs and outputs correct?
Proposed Solution:
In the Rule Editor in the IdentityIQ user interface, an input variable can be inserted by double-clicking its name from the list of " Arguments " .
An implementation engineer needs to perform an upgrade of IdentityIQ between releases.
Is the following statement true?
Proposed Solution:
All custom branding changes will automatically be updated through the upgrade process.
The engineer uses the sailpoint.api.IdentityService in a BeanShell method to look up and return all account names for an identity on the application ' MagicBox ' . Is this a correct implementation?
Proposed Solution:
import sailpoint.api.IdentityService;
import sailpoint.api.SailPointContext;
import sailpoint.object.Application;
import sailpoint.object.Identity;
import sailpoint.object.Link;
import sailpoint.tools.GeneralException;
public List getAccountNames(SailPointContext context, Identity identity) throws GeneralException {
Application application = context.getObjectByName(Application.class, " MagicBox " );
IdentityService service = new IdentityService(context);
List < String > accountNames = new ArrayList < String > ();
List < Link > links = service.getLinks(identity, application);
if (links != null) {
for (Link link : links) {
accountNames.add(link.getNativeIdentity());
}
}
return accountNames;
}
Can a Workgroup be used for the following scenario?
Solution: Automatically creating multiple groups based on the values of a single identity attribute.
is the following a valid role option that can be configured?
Solution: Configure a role to include a set of IdentitylQ capabilities.
An engineer needs to first create a custom audit event and then set up an associated report.
What are four steps to accomplish this goal?
Proposed Solution:
Set up a new AuditAction in the AuditConfig object XML:
< AuditAction displayName= " Custom New Audit Event " enabled= " true " name= " actionname " / >
Is this a benefit of using the Run Rule feature of the Debug-Object page?
Proposed Solution:
It can be used to display the return value of simple code.
Is this statement true about identitylQ ' s syslog event storage?
Solution: IdentitylQ logging events are stored in a database table in addition to log files.
Can the search type in Identity be used to accomplish this result?
Proposed Solution:
Identifying the number of certifications that are currently in the revocation phase
Is the following statement about workflows and sub-workflows (subprocesses) true?
Proposed Solution:
Many standard LCM sub-workflows can be leveraged in custom workflows, with their behavior controlled via input variables.
An engineer needs to first create a custom audit event and then set up an associated report.
What are four steps to accomplish this goal?
Proposed Solution:
Write logic in a BeanShell rule, task, or workflow step to created the audit event, populated with the appropriate data values.
The engineer is analyzing on a workflow Transition.
The following variable values are known:
Will the workflow continue to this step?
Solution: Approve
Can the Provisioning tab under " Administrator Console ' be used to do the following task?
Solution: Map the associated WorkflowCase to a particular Provisioning Transaction.
Can the search type in Identity be used to accomplish this result?
Proposed Solution:
Identifying the number of employees that report to a specific person
Is this a correct procedure for testing generated emails in a non-production system?
Proposed Solution:
Change the Email Notification Type to IMAP under Global Settings > Configure IdentityIQ Settings > Mail Settings, run the test scenario, and verify if the emails were successfully delivered to mailboxes specified on Identity objects.
Is this configuration option required when an engineer sets up any application?
Proposed Solution:
Identity Attribute
Match the following IdentitylQ console commands To their functions.
Use the drop-down menus to select your answers. Answer options from the drop-down menus may only be used once Some will not be used at all.
How should an engineer schedule the tasks to most efficiently achieve the following goals?
Goals:
• Process the Employee Authoritative application at 5:00 AM and 12:00 PM.
• Process the Contractor Authoritative application at 5:10 AM and 12:10 PM.
• Process the Active Directory application at 5:20 AM and 12:20 PM.
• Process the Finance application at 8:00 PM.
• Check for expired work items at 12:00 AM.
• Perform identity request maintenance at 2:00 AM.
Schedule parameters:
• Each application aggregation takes anywhere between 30 minutes and 2 hours.
• The run schedule is for a 24-hour period, which begins at 12:00 AM.
Instructions:
• Drag the required tasks from the left into the answer area on the right, and place them in the correct order, starting at 12:00 AM.
• Ordinal numbers (such as 1st, 2nd, and 3rd) in the options indicate which run of the day it is for the task type.
• There will be unused task options.
Is the following statement true?
Solution: Every Link object must be associated to an Identity object
Is this statement true about the Application, Identity, ManageAttribute, Bundle, and Link objects in IdentitylQ?
Solution: An Application object is not required to aggregate external user account information into IdentitylQ.
An engineer needs to trigger a workflow when a Division attribute changes from IT to Senior IT, but only when the user is a manager.
Is this a valid process that the engineer could use to launch a workflow for a lifecycle event?
Proposed Solution:
Create a trigger with an event type of create.
An engineer is assigned to configure an identity attribute. The requirements are:
Purpose: Add a user ' s security clearance to their identity
Read from: Workday; if not found in Workday, Contractor file; otherwise, leave empty
Usage 1: Display as option in Advanced Analytics
Usage 2: Use when writing rules
Usage 3: Can be updated through the Edit Identity Quicklink, but Workday is authoritative
Usage 4: List as entitlement on Identity Cubes
Does the engineer need to set this configuration option on the identity attribute to meet the requirements?
Proposed Solution:
Entitlement
Is the following true of Identity Provisioning Policies?
Solution: The Create Identity Provisioning Policy will be applied to identity creation during aggregation from an authoritative source so that identities will be created with valid/authorized attribute values.
Can this action be performed as part of configuring an application definition in IdentitylQ?
Solution: Specify which users should be provisioned with a basic account as part of a joiner event.
Can the rule library named Common Rules Library " be included in a Rule by adding this code?
Solution:
Is this configuration option required when an engineer sets up any application?
Proposed Solution:
Create Policy
Can the following be achieved via configuration of control variables in the out-of-the-box Lifecycle Manager (LCM) workflows?
Proposed Solution:
Specify which applications support new account requests.
An engineer needs to first create a custom audit event and then set up an associated report.
What are four steps to accomplish this goal?
Proposed Solution:
Set up a new AuditAction in the AuditConfig object XML:
< ObjectAttribute displayName= " User Type " editMode= " Permanent " extendedNumber= " 2 " name= " userType " type= " string " / >
Is this where email templates can be viewed after product installation?
Proposed Solution:
In the Debug page as an EmailTemplate object.
Is this statement valid regarding the control and usability of the Debug pages in IdentitylQ?
Solution: The current version and patch level of IdentitylQ can be found through the Debug-About page.
Is this a purpose of an IdentitylQ certification?
Solution: to attest lo a user ' s system access
For a user who wants to be able to enable an account for a subordinate or themselves through Manage Accounts, does this configuration need to be performed in Lifecycle Manager (LCM)?
Select the Rehire action under Manage Accounts Options in the LCM Configuration.
Solution: Select the Rehire action under Manage Accounts Options in the LCM Configuration.
A bank is two years into an ongoing project to provide all access through roles. The bank is actively using roles and actively adding to their role model. They need to ensure that all roles include the correct entitlements.
Will this certification type achieve the goal?
Solution: Application Owner Certification
Is this an example of a mover lifecycle event?
Solution: A contractor whose contract expired and accounts were disabled has a new contract with the company; the contractor needs all of their previous accounts enabled.
Can the Environment tab under ‘Administrator Console’ be used to do the following task?
Proposed Solution:
Start/Stop a particular application server.
Is this a valid scenario that can be achieved in IdentitylQ by configuring the Quicklink populations?
Solution: Allow a user to create a new identity cube in IdentitylQ.
A client wants users who belong to an IdentitylQ workgroup named Management to be able to request entitlements and roles, but only for other users whose location attribute is the same as theirs.
Is this a population that will achieve the goal?
Solution: Create a quicklink population, set the membership match list to " All, " and set " Who can members request for? ' ' as share attributes with the requester, with the attribute set to location. '
Can the following IdentityIQ object be extended to store client-specific data by updating the corresponding .HBM file?
Proposed Solution:
CertificationItem


