POST ChangePassword

Request Information

URI Parameters

None.

Body Parameters

ChangePassword
NameDescriptionTypeAdditional information
NewPassword

string

String length: inclusive between 0 and 8000

Id

integer

None.

Email

string

None.

LicenseKey

string

None.

Password

string

None.

Request Formats

application/json, text/json

Sample:
{
  "NewPassword": "sample string 1",
  "Id": 2,
  "Email": "sample string 3",
  "LicenseKey": "sample string 4",
  "Password": "sample string 5"
}

application/xml, text/xml

Sample:
<ChangePassword xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Models">
  <Email>sample string 3</Email>
  <Id>2</Id>
  <LicenseKey>sample string 4</LicenseKey>
  <Password>sample string 5</Password>
  <NewPassword>sample string 1</NewPassword>
</ChangePassword>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ChangePassword'.

Response Information

Resource Description

ValidateResponse
NameDescriptionTypeAdditional information
IsValid

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "IsValid": true
}

application/xml, text/xml

Sample:
<ValidateResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Models">
  <IsValid>true</IsValid>
</ValidateResponse>