Skip to main content
POST
/
auth
/
forgot-password
Request Password Reset
curl --request POST \
  --url https://api.headlesscommerce.io/v1/auth/forgot-password \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "jsmith@example.com"
}
'
{
  "message": "If an account exists with that email, a reset link has been sent."
}

Body

application/json
email
string<email>
required

Response

200 - application/json

Success (always returns this, even if email not found)

message
string
Example:

"If an account exists with that email, a reset link has been sent."