Resend verification email
POST
/_torii/auth/resend-verification
const url = 'https://your-app.torii.so/_torii/auth/resend-verification';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"email":"hello@example.com"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://your-app.torii.so/_torii/auth/resend-verification \ --header 'Content-Type: application/json' \ --data '{ "email": "hello@example.com" }'Parameters
Section titled “ Parameters ”Header Parameters
Section titled “Header Parameters ” Host
string
Origin
string
Request Body required
Section titled “Request Body required ” Media type application/json
object
email
required
string format: email
Example generated
{ "email": "hello@example.com"}Responses
Section titled “ Responses ”OK
Media type application/json
object
key
additional properties
string
Example generated
{ "additionalProperty": "example"}