cURL
curl --request POST \ --url https://api.myidvirtual.com/mail/register \ --header 'Content-Type: application/json' \ --data ' { "email": "<string>", "name": "<string>" } '
{ "success": true, "message": "<string>" }
Send a registration confirmation email to a new user
ios
curl -X POST "http://localhost:3333/mail/register?system=ios" \ -H "Content-Type: application/json" \ -d '{ "email": "[email protected]", "name": "John Doe" }'
{ "success": true, "message": "Registration email sent successfully" }