Change password of user

POST /api-v1/contact/password

Headers

Body Required

changePasswordForContact

Responses

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

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