Change my password

POST /api-v1/myaccount/password

Headers

Body Required

changePasswordMyAccount

Responses

POST /api-v1/myaccount/password
curl \
 -X POST http://wyzio.app/api-v1/myaccount/password \
 -H "TARGET-ORGANIZATION-ID: 42" \
 -H "WEAL-TOKEN: string" \
 -d '{"currentPassword":"string","id":42,"newPassword":"string"}'
Request example
# Headers
TARGET-ORGANIZATION-ID: 42
WEAL-TOKEN: string

# Payload
{
  "currentPassword": "string",
  "id": 42,
  "newPassword": "string"
}