const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
userAddress: '0x2222222222222222222222222222222222222222',
email: 'ana@example.com'
})
};
fetch('http://localhost:3000/api/integrations/breb/kyc/otp/send', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));