Resend verification email to the user.
curl --request POST \
--url https://api.example.com/api/v1/auth/resend-verification \
--header 'Content-Type: application/json' \
--data '
{
"email": "[email protected]"
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Request body for sending verification email.
User's email address. If not provided, the authenticated user's email is used.
Successful Response
curl --request POST \
--url https://api.example.com/api/v1/auth/resend-verification \
--header 'Content-Type: application/json' \
--data '
{
"email": "[email protected]"
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}