Skip to main content
POST
/
api
/
v1
/
auth
/
reset-password
Reset password
curl --request POST \
  --url https://api.logfleet.io/api/v1/auth/reset-password \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "token": "<string>",
  "new_password": "<string>"
}
'
{
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
token
string
required
new_password
string
required
Minimum string length: 12

Response

Password reset successful

message
string