Skip to main content
POST
/
api
/
v1
/
auth
/
resend-verification
Resend Verification
curl --request POST \
  --url https://roughy-api-staging.fly.dev/api/v1/auth/resend-verification \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "alex@example.com"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.roughy.ai/llms.txt

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

Body

application/json

Re-issue a verification email for a not-yet-verified account.

Always returns 202 from the endpoint regardless of whether the email is registered or already verified, so an attacker cannot enumerate accounts via this surface. The handler structures the work to be constant-shape on either branch (rate-limit by email

  • by IP, branch decisions logged at INFO with structured fields, no response-body differentiation).
email
string<email>
required

Response

Successful Response