API Runner
forgot-password Endpoints
All endpoints for the forgot-password API group. Great for feeding into an LLM context.
POST
/v1/forgot-password
Forgot Password
Initiates the password reset flow. Generates a new activation code and emails the user.
Request Body
{
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object",
"title": "Data"
}
}
},
"required": true
}Responses
200Successful Response
application/json
{}404Not found
422Validation Error
application/json
{
"$ref": "#/components/schemas/HTTPValidationError"
}