POST api/Employee/PostForgotLogin

Request Information

URI Parameters

None.

Body Parameters

ChangePasswordModel
NameDescriptionTypeAdditional information
EmployeeId

integer

None.

OldPassword

string

None.

ChangePassword

string

None.

ConfirmChangePassword

string

None.

UserName

string

None.

EmailID

string

None.

Request Formats

application/json, text/json

Sample:
{
  "EmployeeId": 1,
  "OldPassword": "sample string 2",
  "ChangePassword": "sample string 3",
  "ConfirmChangePassword": "sample string 4",
  "UserName": "sample string 5",
  "EmailID": "sample string 6"
}

application/xml, text/xml

Sample:
<ChangePasswordModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HRMSWebAPI.Transaction.Employee">
  <ChangePassword>sample string 3</ChangePassword>
  <ConfirmChangePassword>sample string 4</ConfirmChangePassword>
  <EmailID>sample string 6</EmailID>
  <EmployeeId>1</EmployeeId>
  <OldPassword>sample string 2</OldPassword>
  <UserName>sample string 5</UserName>
</ChangePasswordModel>

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.