Skip to main content
POST
/
email-verification
Request Email Verification
const options = {
  method: 'POST',
  headers: {'Content-Type': 'application/json'},
  body: JSON.stringify({email: 'jsmith@example.com'})
};

fetch('https://gp-auth-module.prod.gnosispay.com/email-verification', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "ok": true
}

Body

application/json
email
string<email>
required

Response

OTP sent successfully

ok
enum<boolean>
required
Available options:
true