Skip to main content
POST
/
api
/
auth
/
signup
/
verify-email
/
resend
Resend verification email
curl --request POST \
  --url https://payments.oaknetwork.org/api/auth/signup/verify-email/resend \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "user@example.com"
}
'
{
  "msg": "Email Verification Token Updated!, Sent Verification Email!",
  "data": null
}

Body

application/json
email
string<email>
required

Email address to resend verification to

Example:

"user@example.com"

Response

Verification email resent successfully

msg
string
required

Human-readable message describing the result

data
any
required

Response payload (null on error)