Hello everyone,
After passing some custom data in the reset password form, like this:
axios.post(`${customDomain}/lo/reset`, {
_csrf: csrfTokenValue,
ticket: ticketValue,
email: emailValue,
newPassword: newPasswordValue,
confirmNewPassword: confirmNewPasswordValue,
customData: customDataValue
})
I would like to access the customDataValue
in the Post Change Password action flow. Is this possible?
I’ve tried passing it in the payload, inside user_metadata
and app_metadata
, but nothing seems to work. I just cant get customDataValue in Post Change Password action flow.
Any help would be greatly appreciated.