Skip to content

Resend Verification

POST
/auth/resend-verification
curl --request POST \
--url https://example.com/auth/resend-verification \
--header 'Content-Type: application/json' \
--data '{ "email": "example" }'

Resend verification email

Media typeapplication/json
ResendVerificationRequest
object
email
required
Email
string
Examplegenerated
{
"email": "example"
}

Successful Response

Media typeapplication/json
Examplegenerated
example

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}