Hi there,
I am trying to implement password reset in my site, and tried using the management API to kick off the password reset process. The code looks like the following, but the await statement never returns, like it got stuck. No errors, no results.
ManagementApiClient client = new ManagementApiClient(token.accessToken, ConfigurationManager.AppSettings["auth0:BaseUrl"]);
var result = await client.Tickets.CreatePasswordChangeTicketAsync(new PasswordChangeTicketRequest { UserId = id });
could someone point me to the right direction please?
thanks a lot
paul