POST api/Organization/ChangePassword

Change the current password, mandatory after the initial registration or password reset by Admin.

Request Information

URI Parameters

None.

Body Parameters

OrgPasswordChange
NameDescriptionTypeAdditional information
LoginCode

Organization Login Code (7 digits number)

integer

Required

Data type: Text

OldPassword

Current password, or the initial password (after password reset)

string

Required

Data type: Password

NewPassword

The new password

string

Required

Data type: Password

ConfirmPassword

Repeat the new password once again

string

Required

Data type: Password

Request Formats

application/json, text/json

Sample:
{
  "LoginCode": 1,
  "OldPassword": "sample string 2",
  "NewPassword": "sample string 3",
  "ConfirmPassword": "sample string 4"
}

application/xml, text/xml

Sample:
<OrgPasswordChange xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WN.Concord.MOBioServer.WebAPI.Models">
  <ConfirmPassword>sample string 4</ConfirmPassword>
  <LoginCode>1</LoginCode>
  <NewPassword>sample string 3</NewPassword>
  <OldPassword>sample string 2</OldPassword>
</OrgPasswordChange>

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.