POST api/contacts/ChangePassword

Request Information

URI Parameters

None.

Body Parameters

ChangePasswordModel
NameDescriptionTypeAdditional information
ContactId

string

None.

CurrentPasswotd

string

None.

NewPassword

string

None.

ConfirmPassword

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ContactId": "sample string 1",
  "CurrentPasswotd": "sample string 2",
  "NewPassword": "sample string 3",
  "ConfirmPassword": "sample string 4"
}

application/xml, text/xml

Sample:
<ChangePasswordModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.Models.Contact">
  <ConfirmPassword>sample string 4</ConfirmPassword>
  <ContactId>sample string 1</ContactId>
  <CurrentPasswotd>sample string 2</CurrentPasswotd>
  <NewPassword>sample string 3</NewPassword>
</ChangePasswordModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ActionResultVM
NameDescriptionTypeAdditional information
Response

IResponse

None.

Response Formats

application/json, text/json

Sample:
{
  "Response": null
}

application/xml, text/xml

Sample:
<ActionResultVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.ViewModels">
  <Response i:nil="true" />
</ActionResultVM>