Skip to content
Start in Cloud

Request password reset

POST
/api/auth/forgot-password
curl --request POST \
--url https://hitkeep.com/api/auth/forgot-password \
--header 'Content-Type: application/json' \
--data '{ "email": "hello@example.com" }'

Sends password reset email if account exists.

Media type application/json
object
email
required
string format: email
Example generated
{
"email": "hello@example.com"
}

Status

Media type application/json
object
message
string
status
string
Example generated
{
"message": "example",
"status": "example"
}