/v1/auth/password-reset/request
POST
/v1/auth/password-reset/request
const url = 'http://localhost:8787/v1/auth/password-reset/request';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"email":"hello@example.com","tenantId":"2489E9AD-2EE2-8E00-8EC9-32D5F69181C0"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url http://localhost:8787/v1/auth/password-reset/request \ --header 'Content-Type: application/json' \ --data '{ "email": "hello@example.com", "tenantId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0" }'Request Body
Section titled “Request Body”Media typeapplication/json
object
email
required
string format: email
tenantId
required
string format: uuid
Examplegenerated
{ "email": "hello@example.com", "tenantId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0"}Responses
Section titled “Responses”Always 200 regardless of whether the email matched a user in this tenant — no enumeration (ADR-0006).
Media typeapplication/json
object
accepted
required
boolean
Example
{ "accepted": true}