curl --request POST \
--url https://api.example.com/iser/send-verification-email \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>"
}
'{
"success": true,
"data": "<unknown>"
}Call to send out an email for the new user to verify their email address.
curl --request POST \
--url https://api.example.com/iser/send-verification-email \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>"
}
'{
"success": true,
"data": "<unknown>"
}