POST
/
api
/
auth
/
reset-password
curl --request POST \
  --url http://localhost/api/auth/reset-password \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form 'token=<string>' \
  --form 'password=<string>'
{
  "success": true
}

Authorizations

Authorization
string
header
required

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

Body

token
string
required
password
string
required

Response

200
*/*
Password successfully reset
success
boolean