Resend verification email by token
/v1/auth/resend-verification-by-tokenPublic variant of resend-verification keyed by the original (possibly expired) verification token rather than the email, so the hosted verify-email page can offer one-click resend without the address in the URL. Rate-limited to 3 per hour; the pending row survives an expired token, so an expired link can always be refreshed. Always returns a generic success message to avoid leaking whether the token maps to anything.
Request body
application/json
tokenstring Required The verification token from the email link
Responses
application/json
data *MessageResponseDto
Returned object
curl -X POST "https://auth.canopy-io.com/v1/auth/resend-verification-by-token" \ -H "Content-Type: application/json" \ -d '{ "token": "string" }'
{ "data": { "message": "string" } }
Tell us how we can improve this guide.