POST Users/ChangePassword

Changes the user's password

Request Information

URI Parameters

None.

Body Parameters

UpdateUserPasswordDTO
NameDescriptionTypeAdditional information
UserID

Gets or sets the ID of the user

globally unique identifier

None.

Password

Password

string

None.

Request Formats

application/json, text/json

Sample:
{
  "results": [
    {
      "UserID": "3fda1680-e075-4a0d-9b7d-853bcb7ec032",
      "Password": "sample string 2"
    }
  ]
}

text/javascript

Sample:
{"results":[{"UserID":"3fda1680-e075-4a0d-9b7d-853bcb7ec032","Password":"sample string 2"}]}

application/bson

Sample:
Binary JSON content. See http://bsonspec.org for details.

application/xml, text/xml

Sample:
<UpdateUserPasswordDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lpp.Dns.DTO">
  <Password>sample string 2</Password>
  <UserID>3fda1680-e075-4a0d-9b7d-853bcb7ec032</UserID>
</UpdateUserPasswordDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.