I use SSO (forced sso by redirecting index.html to /SSO/) and have a deeplink that forces a login. It points to a microflow that is allowed by both ANONYMOUS role and the ROLE of the user who will be given the link. My DeepLink.LoginLocation is "/SSO/login?f=true&cont=" By debugging I can see that the user is logged in and they hit the microflow I define as their "homepage". It calls the DeepLinkHome microflow which checks if there are any pending links. I do THREE retrieves just to see what kind of pendinglinks I have 1) [User = $currentUser/Name][SessionId = empty or SessionId = '' or SessionId = $sessionID] 2) [SessionId = empty or SessionId = '' or SessionId = $sessionID] 3) No filters. just ALL pending links NONE of them come back with any pendinglinks at all, not even the 3rd that grabs all. If I make a copy of the microflow and set up a second deeplink to it and DONT force login, allowing anonymous users to access it, the pendinglink shows up and the anon user gets sent to the correct microflow. This seems to be a problem specifically for logged in users. Does anyone know why my logged in users dont seem to be creating pendinglinks?