Re-send the email verification magic link to the authenticated user.
POST
/auth/email/resend-verification
const url = 'https://api.siteqwality.com/auth/email/resend-verification';const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
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://api.siteqwality.com/auth/email/resend-verification \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”Verification email queued
Missing or invalid authentication
Internal server error