Action suddenly not triggering

dev-5h1z7saw4vm5ltas this is my tenant name, i have a single login action which works well couple days ago and now suddenly not triggering, test action triggering successfully

Hey there @ymc182 welcome to the community!

I took a look at your tenant and see the action you are referring to - Is is still not firing? Do you see any logging specific to the action if you look at monitoring → Logs → successful login → action details?

If you unbind the current login action from the flow and then add a new one to simply test the flow, does that action fire? A good simple test might be:

exports.onExecutePostLogin = async (event, api) => {

  if (event.authorization) {
    console.log(`made it here: ${event.user.email}`)
  }
}

Keep us posted!

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