Endpoint not available

After the latest version I notice that the endpoint https://api-passwordless.web3auth.io/api/v3/auth/passwordless/verify has become unavailable. We were using it for testing purposes, is there a way that we can check if the validation of the login is correct.

We were calling to that endpoint in the following way:

  const data = await request.post(authHost, {
    body: JSON.stringify({
      connection: 'email',
      idToken: token,
      network: 'sapphire_devnet',
      version: 'v3',
    }),
    headers: {
      Accept: 'application/json',
      'Content-Type': 'application/json',
    },
  })``` 

If this is not there anymore, is there a way to verify that in another way?

Thank you

@enrique Thanks for your recent post.

Your issue has been forwarded to our team and we will get back with further updates.

at the end of successful login, web3auth returns an id token. you can check that in your backend.

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