Reset Password
curl --request POST \
--url https://api.headlesscommerce.io/v1/auth/reset-password \
--header 'Content-Type: application/json' \
--data '
{
"token": "<string>",
"password": "<string>"
}
'{
"message": "Password has been reset successfully."
}Auth
Reset Password
Completes the password reset flow using the token from the email link.
Password requirements:
- Minimum 8 characters
- At least one uppercase letter
- At least one lowercase letter
- At least one number
- At least one special character
POST
/
auth
/
reset-password
Reset Password
curl --request POST \
--url https://api.headlesscommerce.io/v1/auth/reset-password \
--header 'Content-Type: application/json' \
--data '
{
"token": "<string>",
"password": "<string>"
}
'{
"message": "Password has been reset successfully."
}⌘I