GET api/capacity?applicationId={applicationId}
Provides a breakdown of the customers affordability.
Request Information
Requires Authentication!
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
applicationId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
CapacityReturnName | Description | Type | Additional information |
---|---|---|---|
MMP | decimal number |
Required |
|
Advance | decimal number |
Required |
|
IncomeVerified | boolean |
Required |
|
Income | decimal number |
Required |
|
Dependants | decimal number |
Required |
|
AdditionalIncome | decimal number |
Required |
Response Formats
application/json, text/json
Sample:
{ "MMP": 1.0, "Advance": 2.0, "IncomeVerified": true, "Income": 4.0, "Dependants": 5.0, "AdditionalIncome": 6.0 }
application/xml, text/xml
Sample:
<Capacity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Advantage.Blink.Web.WebModel.Capacity"> <MMP>1</MMP> <Advance>2</Advance> <IncomeVerified>true</IncomeVerified> <Income>4</Income> <Dependants>5</Dependants> <AdditionalIncome>6</AdditionalIncome> </Capacity>