Skip to main content
POST
/
api
/
v1
/
auth
/
reset_password
/
current
Update current password
curl --request POST \
  --url https://api.paylora.org/api/v1/auth/reset_password/current \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "old_password": "oldpassword123",
  "new_password": "newpassword123"
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

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

Body

application/json
old_password
string
required
Example:

"oldpassword123"

new_password
string
required
Example:

"newpassword123"

Response

Password updated