GET api/Calculation/GetPropertyFromDebts
Gets all the property items generated by the debts.
Response Information
Response body formats
application/json, text/json
Sample:
[
{
"ID": 1,
"Type": 2,
"Description": "sample string 3",
"Entity": 4,
"StartDate": "03/03/2026 01:15",
"MarketValue": 6.0,
"ValueEvolution": 7.0
},
{
"ID": 1,
"Type": 2,
"Description": "sample string 3",
"Entity": 4,
"StartDate": "03/03/2026 01:15",
"MarketValue": 6.0,
"ValueEvolution": 7.0
},
{
"ID": 1,
"Type": 2,
"Description": "sample string 3",
"Entity": 4,
"StartDate": "03/03/2026 01:15",
"MarketValue": 6.0,
"ValueEvolution": 7.0
}
]
application/xml, text/xml
Sample:
<ArrayOfDebtPropertyVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CapitalPlanner.API.Models">
<DebtPropertyVM>
<Description>sample string 3</Description>
<Entity>4</Entity>
<ID>1</ID>
<MarketValue>6</MarketValue>
<StartDate>2026-03-03T01:15:38.354625+01:00</StartDate>
<Type>2</Type>
<ValueEvolution>7</ValueEvolution>
</DebtPropertyVM>
<DebtPropertyVM>
<Description>sample string 3</Description>
<Entity>4</Entity>
<ID>1</ID>
<MarketValue>6</MarketValue>
<StartDate>2026-03-03T01:15:38.354625+01:00</StartDate>
<Type>2</Type>
<ValueEvolution>7</ValueEvolution>
</DebtPropertyVM>
<DebtPropertyVM>
<Description>sample string 3</Description>
<Entity>4</Entity>
<ID>1</ID>
<MarketValue>6</MarketValue>
<StartDate>2026-03-03T01:15:38.354625+01:00</StartDate>
<Type>2</Type>
<ValueEvolution>7</ValueEvolution>
</DebtPropertyVM>
</ArrayOfDebtPropertyVM>