POST api/Customer/UpdateUserPasswordV2

Request Information

URI Parameters

None.

Body Parameters

UpdateUserPasswordRequest
NameDescriptionTypeAdditional information
UserId

globally unique identifier

None.

OldPassword

string

None.

NewPassword

string

None.

IPAddress

string

None.

UserAgent

string

None.

PermanentSessionId

string

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": "54ed6d4d-f6f1-4c6f-bc34-36b6f17a7fe6",
  "OldPassword": "sample string 2",
  "NewPassword": "sample string 3",
  "IPAddress": "sample string 4",
  "UserAgent": "sample string 5",
  "PermanentSessionId": "sample string 6"
}

application/xml, text/xml

Sample:
<UpdateUserPasswordRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request">
  <IPAddress>sample string 4</IPAddress>
  <NewPassword>sample string 3</NewPassword>
  <OldPassword>sample string 2</OldPassword>
  <PermanentSessionId>sample string 6</PermanentSessionId>
  <UserAgent>sample string 5</UserAgent>
  <UserId>54ed6d4d-f6f1-4c6f-bc34-36b6f17a7fe6</UserId>
</UpdateUserPasswordRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.