Staging environment — data here is not production data
Browse documentation
Signup

Request Password Reset

post/v1/signup/password-reset

Always answers ``ok``, whether or not the address exists.

Authentication

Send your tenant secret key as a Bearer token. Keep secret keys on your server; never ship them in browser or mobile code.

Request body

JSON · required

email
stringrequired

No additional field description.

Example request

cURL
curl --request POST \
  --url 'https://api.fideralabs.com/v1/signup/password-reset' \
  --header 'Authorization: Bearer $FIDERA_API_KEY' \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "string"
}'

Responses

200Successful Response
status
string

No additional field description.

application/json
{
  "status": "ok"
}
422Validation Error
detail
ValidationError[]

No additional field description.

Operation ID

request_password_reset_v1_signup_password_reset_post