Last updated 8 months ago
Request a password reset link for a user.
OK
Whether the operation succeeded
Optional error description (set if 'success' was false)
const response = await fetch('https://studio.edgeimpulse.com/v1/api-user-request-reset-password', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "email": "text" }), }); const data = await response.json();
{ "success": false, "error": "text" }