POST api/AgrimHousingFinance/CustomerSchedule
Request Information
URI Parameters
None.
Body Parameters
ScheduleRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ApplicationNo | string |
None. |
|
| LoanAmount | decimal number |
None. |
|
| DisburesmentDate | string |
None. |
|
| RepaymentDate | string |
None. |
|
| Roi | decimal number |
None. |
|
| Tenure | integer |
None. |
|
| TranchNo | integer |
None. |
|
| PrincipalMode | integer |
None. |
|
| InterestMode | integer |
None. |
|
| EmiType | string |
None. |
|
| InterestType | string |
None. |
|
| CoLenderRoi | decimal number |
None. |
|
| Colender | string |
None. |
|
| MoritoriumPrincipal | integer |
None. |
|
| MoritoriumInterest | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ApplicationNo": "sample string 1",
"LoanAmount": 2.0,
"DisburesmentDate": "sample string 3",
"RepaymentDate": "sample string 4",
"Roi": 5.1,
"Tenure": 6,
"TranchNo": 7,
"PrincipalMode": 8,
"InterestMode": 9,
"EmiType": "sample string 10",
"InterestType": "sample string 11",
"CoLenderRoi": 12.1,
"Colender": "sample string 13",
"MoritoriumPrincipal": 14,
"MoritoriumInterest": 15
}
application/xml, text/xml
Sample:
<ScheduleRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgrimHousingFinance.Models"> <ApplicationNo>sample string 1</ApplicationNo> <CoLenderRoi>12.1</CoLenderRoi> <Colender>sample string 13</Colender> <DisburesmentDate>sample string 3</DisburesmentDate> <EmiType>sample string 10</EmiType> <InterestMode>9</InterestMode> <InterestType>sample string 11</InterestType> <LoanAmount>2</LoanAmount> <MoritoriumInterest>15</MoritoriumInterest> <MoritoriumPrincipal>14</MoritoriumPrincipal> <PrincipalMode>8</PrincipalMode> <RepaymentDate>sample string 4</RepaymentDate> <Roi>5.1</Roi> <Tenure>6</Tenure> <TranchNo>7</TranchNo> </ScheduleRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of ScheduleList| Name | Description | Type | Additional information |
|---|---|---|---|
| PrinInst | integer |
None. |
|
| Repaydt | date |
None. |
|
| Prin | decimal number |
None. |
|
| Intr | decimal number |
None. |
|
| TotAmount | decimal number |
None. |
|
| OpeningOs | decimal number |
None. |
|
| Os | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"PrinInst": 1,
"Repaydt": "2026-01-13T16:33:49.125386+05:30",
"Prin": 3.0,
"Intr": 4.0,
"TotAmount": 5.0,
"OpeningOs": 6.0,
"Os": 7.0
},
{
"PrinInst": 1,
"Repaydt": "2026-01-13T16:33:49.125386+05:30",
"Prin": 3.0,
"Intr": 4.0,
"TotAmount": 5.0,
"OpeningOs": 6.0,
"Os": 7.0
}
]
application/xml, text/xml
Sample:
<ArrayOfScheduleList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgrimHousingFinance.Models">
<ScheduleList>
<Intr>4</Intr>
<OpeningOs>6</OpeningOs>
<Os>7</Os>
<Prin>3</Prin>
<PrinInst>1</PrinInst>
<Repaydt>2026-01-13T16:33:49.125386+05:30</Repaydt>
<TotAmount>5</TotAmount>
</ScheduleList>
<ScheduleList>
<Intr>4</Intr>
<OpeningOs>6</OpeningOs>
<Os>7</Os>
<Prin>3</Prin>
<PrinInst>1</PrinInst>
<Repaydt>2026-01-13T16:33:49.125386+05:30</Repaydt>
<TotAmount>5</TotAmount>
</ScheduleList>
</ArrayOfScheduleList>