const response = await fetch('//api.client.nbcgate.tech/auth/recovery/psw/otp/check', {
method: 'POST',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"email": "text",
"otp": "text"
}),
});
const data = await response.json();