POST api/Employee/SaveEmployeeLoan
Request Information
URI Parameters
None.
Body Parameters
EmployeeLoanModel| Name | Description | Type | Additional information |
|---|---|---|---|
| LoanId | integer |
None. |
|
| Empid | integer |
None. |
|
| LoanAmount | decimal number |
None. |
|
| MonthlyInstallment | decimal number |
None. |
|
| IsStart | boolean |
None. |
|
| LoanDate | date |
None. |
|
| OpeningBalance | decimal number |
None. |
|
| ClosingBalance | decimal number |
None. |
|
| LoanTransactionId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"LoanId": 1,
"Empid": 1,
"LoanAmount": 1.1,
"MonthlyInstallment": 1.1,
"IsStart": true,
"LoanDate": "2025-12-06T08:50:54.418415+05:30",
"OpeningBalance": 1.0,
"ClosingBalance": 1.0,
"LoanTransactionId": 1
}
application/xml, text/xml
Sample:
<EmployeeLoanModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MendinePayroll.Models"> <ClosingBalance>1</ClosingBalance> <Empid>1</Empid> <IsStart>true</IsStart> <LoanAmount>1.1</LoanAmount> <LoanDate>2025-12-06T08:50:54.418415+05:30</LoanDate> <LoanId>1</LoanId> <LoanTransactionId>1</LoanTransactionId> <MonthlyInstallment>1.1</MonthlyInstallment> <OpeningBalance>1</OpeningBalance> </EmployeeLoanModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |