Skip to main content
POST
/
v1
/
api
/
auth
/
reset-password
Reset password with token
curl --request POST \
  --url http://localhost:3091/v1/api/auth/reset-password \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-Reset-Token: <x-reset-token>' \
  --data '
{
  "newPassword": "<string>"
}
'
"<string>"

Authorizations

Authorization
string
header
required

JWT access token from POST /v1/api/auth/login

Headers

X-Reset-Token
string
required

Body

application/json
newPassword
string

Response

Password reset successfully

The response is of type string.