GET api/General/GetDefaultSummary?ScheduleId={ScheduleId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ScheduleId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of DefaultInst| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Description | string |
None. |
|
| Amount | integer |
None. |
|
| RatePerInstallnment | integer |
None. |
|
| GapsOfMonth | integer |
None. |
|
| StartingGap | integer |
None. |
|
| Type | integer |
None. |
|
| NumberOfInstallnment | integer |
None. |
|
| ReceivedAmount | integer |
None. |
|
| DefaulterAmount | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"$id": "1",
"Id": 1,
"Description": "sample string 2",
"Amount": 3,
"RatePerInstallnment": 4,
"GapsOfMonth": 5,
"StartingGap": 6,
"Type": 7,
"NumberOfInstallnment": 8,
"ReceivedAmount": 9,
"DefaulterAmount": 10
},
{
"$ref": "1"
}
]
application/xml, text/xml
Sample:
<ArrayOfDefaultInst xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PMS_WEBAPI_UPDATED.Controllers.api">
<DefaultInst>
<Amount>3</Amount>
<DefaulterAmount>10</DefaulterAmount>
<Description>sample string 2</Description>
<GapsOfMonth>5</GapsOfMonth>
<Id>1</Id>
<NumberOfInstallnment>8</NumberOfInstallnment>
<RatePerInstallnment>4</RatePerInstallnment>
<ReceivedAmount>9</ReceivedAmount>
<StartingGap>6</StartingGap>
<Type>7</Type>
</DefaultInst>
<DefaultInst>
<Amount>3</Amount>
<DefaulterAmount>10</DefaulterAmount>
<Description>sample string 2</Description>
<GapsOfMonth>5</GapsOfMonth>
<Id>1</Id>
<NumberOfInstallnment>8</NumberOfInstallnment>
<RatePerInstallnment>4</RatePerInstallnment>
<ReceivedAmount>9</ReceivedAmount>
<StartingGap>6</StartingGap>
<Type>7</Type>
</DefaultInst>
</ArrayOfDefaultInst>