POST api/Account/UpdatePassword

Request Information

URI Parameters

None.

Body Parameters

UpdatePasswordRequest
NameDescriptionTypeAdditional information
Password

string

None.

IsLogoutAll

boolean

None.

AccountId

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "Password": "sample string 1",
  "IsLogoutAll": true,
  "AccountId": "6bcf807f-87e1-4f9b-a770-46bf975f5a64"
}

application/xml, text/xml

Sample:
<UpdatePasswordRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Common.Model.Request.Account">
  <AccountId>6bcf807f-87e1-4f9b-a770-46bf975f5a64</AccountId>
  <IsLogoutAll>true</IsLogoutAll>
  <Password>sample string 1</Password>
</UpdatePasswordRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.