Resend Verification
POST
/api/v1/auth/resend-verification
const url = 'https://api.qeychain.xyz/api/v1/auth/resend-verification';const options = {method: 'POST'};
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.qeychain.xyz/api/v1/auth/resend-verificationResend the verification email to the current logged-in user.
Requires authentication (JWT cookie).
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Examplegenerated
example