Skip to main content
POST
/
auth
/
resend-verification
Resend email verification
curl --request POST \
  --url https://core.cyberun.cloud/api/v1/auth/resend-verification \
  --header 'Content-Type: application/json' \
  --data '
{
  "email_address": "alice@example.com"
}
'
{
  "is_success": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.cyberun.cloud/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
email_address
string<email>
required

Email address to resend the verification token to.

Example:

"alice@example.com"

Response

If the email exists, a verification link has been sent

is_success
boolean
required

Always true when the action completed successfully.

Example:

true