Resend verification email
/v1/auth/resend-verificationPublic endpoint that re-sends the signup verification email for the given email, refreshing the pending registration's token and 24-hour expiry. Rate-limited to 3 per hour. Always responds with a generic success message regardless of whether a matching unverified registration exists, to avoid account enumeration.
Request body
application/json
emailstring Required Email address
Responses
application/json
data *MessageResponseDto
Returned object
curl -X POST "https://auth.canopy-io.com/v1/auth/resend-verification" \ -H "Content-Type: application/json" \ -d '{ "email": "string" }'
{ "data": { "message": "string" } }
Tell us how we can improve this guide.