1. Docs
  2. API Reference
  3. Resend verification email by token

Resend verification email by token

POST/v1/auth/resend-verification-by-token

Public 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

  • dataMessageResponseDto*

Returned object

Request
curl -X POST "https://auth.canopy-io.com/v1/auth/resend-verification-by-token" \
  -H "Content-Type: application/json" \
  -d '{
    "token": "string"
  }'
Response
{
  "data": {
    "message": "string"
  }
}
Related endpoints
POSTRegister a new user
POSTCreate an additional Account for the authenticated admin (no new user)
GETReview the parked account-creation intent before resuming
POSTResume a deferred account creation parked at the register form
DELETEDismiss the parked account-creation intent without creating anything
POSTLook up invite details by token
POSTAccept an invite
POSTAuthenticate and receive tokens
POSTSelect an Account from a pre-auth session (multi-Account login)
POSTSwitch the active Application in an authenticated session
POSTRefresh access token
POSTLogout and revoke tokens
GETVerify email address
POSTResend verification email
POSTRequest password reset
POSTReset password with token
POSTChange password (authenticated)
GETGet current user profile
GETGet current user avatar image
POSTUpload profile avatar
DELETERemove profile avatar
POSTRequest an email-address change
POSTConfirm an email-address change
GETGet current user permissions
GETList the Accounts the current user belongs to
GETList active sessions
DELETERevoke all sessions
DELETERevoke a specific session
Was this page helpful?

Tell us how we can improve this guide.