Forum Discussion

MarkSchwanke's avatar
3 years ago

How to identify SSO ID for Digital Adoption Platform?

  <script> window.Appcues.identify( "<<< USER_ID >>>", // unique, required { // recommended (optional) properties createdAt: 1566932390, // Unix timestamp of user signup date purc...
  • MarkSchwanke's avatar
    MarkSchwanke
    3 years ago

    I heard back from my CSM. So it turns out that if I use ${user.ssoId} it will work for AppCues, and possibly other Digital Adoption Platforms in the Page Head bottom Content of the Community Wrapper.  It's important to use an uppercase I in Id as ${user.ssoid} will result in errors.

    <script>
    window.Appcues.identify(
      ${user.ssoId},  // unique, required
      {
    
      }
    );
    </script>
    
    <script>