Resend Verification Mail
Resend mail to verify email account.
Endpoint
http
POST /api/v1/user/verifyParameters
Body parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
email | string | yes | The user email where to send verification mail. |
Request example
sh
curl --location --request POST 'https://files.ro/api/v1/user/verify' \
--header 'Content-Type: application/json' \
--data-raw '{
"email": "jane@doe.com"
}'Response
json
{
"type": "success",
"message": "Email verification link was sent to the email"
}json
{
"type": "error",
"message": "Email was already verified."
}