POST
https://api.myidvirtual.com
/
mail
/
resend
Resend User Credentials
curl --request POST \
  --url https://api.myidvirtual.com/mail/resend \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "<string>",
  "name": "<string>"
}
'
{
  "success": true,
  "message": "<string>"
}

Body Parameters

email
string
required
Recipient’s email address
name
string
Recipient’s name for personalization

Response

success
boolean
Indicates if the email was sent successfully
message
string
Success or error message

Example Request

curl -X POST "http://localhost:3333/mail/resend" \
  -H "Content-Type: application/json" \
  -d '{
    "email": "[email protected]",
    "name": "John Doe"
  }'

Response Example

{
  "success": true,
  "message": "Credentials email sent successfully"
}