const response = await fetch('https://studio.edgeimpulse.com/v1/api-user-reset-password', {
method: 'POST',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"email": "text",
"code": "text",
"newPassword": "text"
}),
});
const data = await response.json();