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