Forgot Password
curl --request POST \
--url https://api.headlesscommerce.io/v1/storefront/customer-auth/forgot-password \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "jsmith@example.com"
}
'{
"message": "<string>"
}Storefront - Customer Auth
Forgot Password
Sends a password reset link to the registered email. For security, always returns 200 regardless of whether the email exists.
POST
/
storefront
/
customer-auth
/
forgot-password
Forgot Password
curl --request POST \
--url https://api.headlesscommerce.io/v1/storefront/customer-auth/forgot-password \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "jsmith@example.com"
}
'{
"message": "<string>"
}⌘I