europace / baufismart-antraege-api

As a loan provider get all the data of your applications for highly effective validations and approvals.
https://docs.api.europace.de/baufinanzierung/antraege/antraege-api/
Apache License 2.0
6 stars 5 forks source link

Release 2.64 - Add Number of Payouts for Purchase; add Market Value of Property and Property Valuation Source #181

Closed github-actions[bot] closed 11 months ago

saigyo commented 1 year ago

Enthalten sind die Ă„nderungen aus

Draft Release Beschreibung:

Release 2.64 - Add Number of Payouts for Purchase; add Market Value of Property and Property Valuation Source

We return the number of payouts for purchases from a property developer or for a renovation anzahlTeilzahlungen under finanzbedarf, if that value is provided in the BaufiSmart "Vorgang" under "Finanzbedarf":

{
   "zugrundeliegendeDaten": {
      "vorhaben": {
         "finanzbedarf": {
            "anzahlTeilzahlungen": 10
         }
      }
   }
}

As the number of different property valuation sources and methods on the platform increases, we decided to return the market value marktwert determined by the loan provider specific property valuation source (quelle), together with a source identifier (name) and optional a reference (reference), for each lending object ("Finanzierungs-/Beleihungsobjekt") as objektbewertungen under the structure for the loan provider specific loan value calculation beleihungsRechnung:

{
   "angebot": {
      "beleihungsRechnung": {
         "objektbewertungen": [
            {
               "immobilie": {
                  "id": "65266fce3b4eb7b67cfa113a"
               },
               "marktwert": 123456.78,
               "quelle": {
                  "name": "Value",
                  "reference": "abc123"
               }
            }
         ]
      }
   }
}

For quelle we currently support the following names of valuation sources:

The reference attribute is currently only used internally in combination with name "Value". External users of the API should ignore this attribute.