Psw

Change password

Change password

PUT//api.client.nbcgate.tech/api/personal/psw
Authorization
Body

user info

otp*string
psw*string
Response

No Content

Request
const response = await fetch('//api.client.nbcgate.tech/api/personal/psw', {
    method: 'PUT',
    headers: {
      "Content-Type": "application/json"
    },
    body: JSON.stringify({
      "otp": "text",
      "psw": "text"
    }),
});
const data = await response.json();
Response
{
  "errors": [
    {
      "code": 0,
      "field": "text",
      "message": "text"
    }
  ],
  "message": "text",
  "statusCode": 0
}