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