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": "13/12/2025 08:04",
"MarketValue": 6.0,
"ValueEvolution": 7.0
},
{
"ID": 1,
"Type": 2,
"Description": "sample string 3",
"Entity": 4,
"StartDate": "13/12/2025 08:04",
"MarketValue": 6.0,
"ValueEvolution": 7.0
},
{
"ID": 1,
"Type": 2,
"Description": "sample string 3",
"Entity": 4,
"StartDate": "13/12/2025 08:04",
"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>2025-12-13T20:04:05.161625+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>2025-12-13T20:04:05.161625+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>2025-12-13T20:04:05.161625+01:00</StartDate>
<Type>2</Type>
<ValueEvolution>7</ValueEvolution>
</DebtPropertyVM>
</ArrayOfDebtPropertyVM>