Forgot Password
post
/v1/auth/password/forgotPart 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.
| Field | Type | Description |
|---|---|---|
emailrequired | string (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
| Status | Meaning |
|---|---|
| 400 | Invalid request |
| 422 | Validation Error |
| 429 | Rate limit exceeded |
| 500 | Internal server error |