Skip to main content
POST
/
auth
/
forgot-password
Send password reset link
curl --request POST \
  --url https://psn-api.paystub.dev/auth/forgot-password \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "[email protected]"
}
'
{
  "success": true,
  "data": {},
  "message": "Password reset link sent successfully"
}

Body

application/json
email
string<email>
required

Response

Password reset link sent successfully

success
boolean
Example:

true

data
object
message
string
Example:

"Password reset link sent successfully"