Browse the API reference

Forgot Password

post/v1/auth/password/forgot

Part of Auth.

Request password reset email. Always returns success to prevent email enumeration.

Authentication

This operation does not require an API key.

Request body

Required, application/json.

FieldTypeDescription
emailrequiredstring (email)

Email address to send reset link

Example request

curl
curl -X POST "https://api.robosystems.ai/v1/auth/password/forgot" \
  -H "Content-Type: application/json" \
  -d '{
  "email": "user@example.com"
}'

Responses

200 Successful Response

StatusMeaning
400Invalid request
422Validation Error
429Rate limit exceeded
500Internal server error