SCIM 2.0 connector application attribute doubt

Hi Experts,

I’m integrating SCIM 2.0 connector application to create, enable and disable account via IIQ 8.3.
I’ve doubt about the attribute which I’m getting in schema like as emails.work.secondary.display for multivalued.
does this attribute will work in provisioning.
I’m trying to do disable target application account using provisioning policy and M getting error as invalid email format.
I validated regex and email value is as per regex.
I’ve doubt about the Identity name (emails.work.secondary.display).
can someone clear my doubt.

hi, I’m encountering this issue setting up the SCIM 2.0 connector with identityIQ 8.4p2. Have you made any progress on this? Issue with SCIM 2.0 connector account creation provisioning policy for Atlassian Cloud integration

I just got it working by setting the provisioning policy field as follows:

        <Field displayName="primary email value" name="emails.work.primary.value" type="string">
          <Script>
            <Source>
              import org.apache.logging.log4j.Logger;
              import org.apache.logging.log4j.LogManager;

              Logger log = LogManager.getLogger("ca.org.idam.AtlassianCloudManageUsersAccountCreationPolicy");
              String value = identity.getAttribute("username");
              String updatedValue = (value != null) ? value + ".dev" + "@org.ca" : value;
              log.debug("Atlassian Cloud Manage Users account creation policy get userName (email): " + updatedValue);
              return updatedValue;

            </Source>
          </Script>
        </Field>

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