POST api/v1/Member/SetPasswordChange

Request Information

URI Parameters

None.

Body Parameters

DaoChangePw
NameDescriptionTypeAdditional information
_id

string

Required

String length: inclusive between 4 and 16

_oldpassword

string

Required

String length: inclusive between 4 and 16

_newpassword

string

Required

String length: inclusive between 4 and 16

Request Formats

application/json, text/json

Sample:
{
  "_id": "sample string 1",
  "_oldpassword": "sample string 2",
  "_newpassword": "sample string 3"
}

application/xml, text/xml

Sample:
<DaoChangePw xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/neosonyxlib.models.DAO.Softnyx">
  <_id>sample string 1</_id>
  <_newpassword>sample string 3</_newpassword>
  <_oldpassword>sample string 2</_oldpassword>
</DaoChangePw>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

APIResult
NameDescriptionTypeAdditional information
code

ResultCode

None.

Message

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "code": 0,
  "Message": {}
}

application/xml, text/xml

Sample:
<APIResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/neosonyxlib.models">
  <Code>Fail</Code>
  <Message />
</APIResult>