POST /v1/auth/forgot-password

Send reset password link to user email

application/json

Body

Forgot password request body

  • email string Required

    User email

Responses

  • 204

    Successful operation with no content

  • 422 application/json

    Validation error

    Hide response attributes Show response attributes object
    • statusCode number Required

      Status Code

    • messages array[string] Required

      List of error messages

    • exception object

      Exception

POST /v1/auth/forgot-password
curl \
 --request POST 'https://api.classmanager.io/v1/auth/forgot-password' \
 --header "Content-Type: application/json" \
 --data '{"email":"john@gmail.com"}'
Request examples
{
  "email": "john@gmail.com"
}
Response examples (422)
{
  "statusCode": 42.0,
  "messages": [
    "string"
  ],
  "exception": {}
}