Skip to content

Release 2.69 - Renaming the patch endpoint for setting the loan officer

Compare
Choose a tag to compare
@unstko unstko released this 04 Apr 09:09
· 7 commits to master since this release
31238f6

There is one patch path to set the loan officer itself and one to set the loan officer contact details. However, both paths contain the term "Ansprechpartner" in the sense of the contact person on the loan provider side. However, the "Ansprechpartner" actually means the person on the sales side (clerk). This ambiguity is hereby resolved.

Set loan officer

PATCH /v2/antraege/ABC12F/1/1 HTTP/1.1
Host: baufismart.api.europace.de
Content-Type: application/json
Authorization: Bearer {{access-token}}
Content-Length: 116

[
    {
        "op": "replace",
        "path": "/kreditSachbearbeiter/partnerId",
        "value": "XYZ55"
    }
]

Set loan office contact details

PATCH /v2/antraege/ABC12F/1/1 HTTP/1.1
Host: baufismart.api.europace.de
Content-Type: application/json
Authorization: Bearer {{access-token}}
Content-Length: 263

[
    {
        "op": "replace",
        "path": "/kreditSachbearbeiter/externerPartner",
        "value": {
            "kreditBetriebPartnerId": "MYID03",
            "name": "Frau Angela Anaconda", 
            "telefonnummer": "0170 7717789"
        }
    }
]

The old patch paths /ansprechpartner/partnerId and /ansprechpartner/externerPartner are deprecated. They can still be used, but will be removed in a future major release.