Create new password change ticket mgmt api (python sdk) no redirect generated using client_id

Hello,

We are using the python management sdk to generate a new password ticket for our invite-only application. Per the documentation instructions, we pass in the client_id to force a redirect to the default login route of our application. Unfortunately, no redirect is occurring … When the new user creates a password the page does not auto-redirect. Please see the code snipit and details below

  • Which SDK this is regarding: e.g. Python
  • SDK Version: auth0-python==3.14.0
  • Platform Version: Python 3.8
  • Login Experience: New Universal Login
  • Code Snippet:
    resp_url = auth0.tickets.create_pswd_change({ “user_id”: user_id, "client_id: client_id})

Any help would be greatly appreciated. Thank you in advance!

Hi @Davis,

If you are using classic universal login you will need to pass a result_url with the request. (i.e. "result_url":"https://example.com")

If you are using new universal login then the default login URL will control the redirect.

1 Like

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