Skip to main content
POST
/
api
/
v1
/
auth
/
password-reset
/
request
cURL
curl -sS -X POST "$FLUIDE_BASE_URL/api/v1/auth/password-reset/request" \
  -H "Authorization: Bearer $FLUIDE_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{}'
{
  "success": true,
  "message": "Operation completed successfully",
  "data": {}
}

Authorizations

Authorization
string
header
required

Access token JWT. Use as Authorization: Bearer . In the API playground, paste the JWT only.

Body

application/json
email
string<email>
required
Example:

"jane@example.com"

redirectTo
string
required

Front-end deep-link the reset email should send the user back to.

Example:

"https://app.fluide.app/reset-password"

Response

Send a password reset email with a one-time link — created

success
boolean
required

Whether the request succeeded

Example:

true

message
string
required

Human-readable outcome message (localized when i18n is configured)

Example:

"Operation completed successfully"

data
object

Endpoint-specific payload