New: Stripe & TossPayments integration guides now available →
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>"
}Sends a password reset link to the registered email. For security, always returns 200 regardless of whether the email exists.
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>"
}