curl --request POST \
--url https://api.faces.sh/auth/reset-password \
--header 'Content-Type: application/json' \
--data '
{
"token": "<string>",
"new_password": "<string>"
}
'{
"success": true,
"messages": [],
"data": {},
"error": "<string>",
"meta": {}
}Reset password using a token from the forgot-password email.
curl --request POST \
--url https://api.faces.sh/auth/reset-password \
--header 'Content-Type: application/json' \
--data '
{
"token": "<string>",
"new_password": "<string>"
}
'{
"success": true,
"messages": [],
"data": {},
"error": "<string>",
"meta": {}
}