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": "26/04/2024 11:21",
    "MarketValue": 6.0,
    "ValueEvolution": 7.0
  },
  {
    "ID": 1,
    "Type": 2,
    "Description": "sample string 3",
    "Entity": 4,
    "StartDate": "26/04/2024 11:21",
    "MarketValue": 6.0,
    "ValueEvolution": 7.0
  },
  {
    "ID": 1,
    "Type": 2,
    "Description": "sample string 3",
    "Entity": 4,
    "StartDate": "26/04/2024 11:21",
    "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>2024-04-26T11:21:58.038+02: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>2024-04-26T11:21:58.038+02: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>2024-04-26T11:21:58.038+02:00</StartDate>
    <Type>2</Type>
    <ValueEvolution>7</ValueEvolution>
  </DebtPropertyVM>
</ArrayOfDebtPropertyVM>