-
Notifications
You must be signed in to change notification settings - Fork 5
/
swagger.yaml
4000 lines (3997 loc) · 121 KB
/
swagger.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
swagger: "2.0"
info:
description: As a loan provider get all the data of your applications for highly effective validations and approvals.
version: "2.76"
title: Anträge API
contact:
name: Europace AG
url: https://docs.api.europace.de
email: [email protected]
host: baufismart.api.europace.de
basePath: /
tags:
- name: Antraege
description: All about mortage-applications and -approvals.
schemes:
- https
paths:
/v2/antraege:
get:
tags:
- Antraege
summary: get list of all applications
description: "As loan provider, you'll get a list of all your applications, sorted by lastChanged, paged and filterable."
operationId: getAntraegeList
produces:
- application/json;charset=UTF-8
parameters:
- name: aenderungBis
in: query
description: "filter by changes until, date as ISO Format UTC - Zulu"
required: false
type: string
x-example: 2016-03-11T10:57:45Z
- name: aenderungSeit
in: query
description: "filter by changes since, date as ISO Format UTC - Zulu"
required: false
type: string
x-example: 2016-03-11T10:57:45Z
- name: angenommenNach
in: query
description: "filter by created after, date as ISO Format UTC - Zulu"
required: false
type: string
x-example: 2016-03-11T10:57:45Z
- name: angenommenVor
in: query
description: "filter by created before, date as ISO Format UTC - Zulu"
required: false
type: string
x-example: 2016-03-11T10:57:45Z
- name: antragsReferenz
in: query
description: filter by your own reference
required: false
type: string
- name: datenKontext
in: query
description: usage mode
required: false
type: string
default: ECHT_GESCHAEFT
enum:
- ECHT_GESCHAEFT
- TEST_MODUS
- name: limit
in: query
description: limit
required: false
type: integer
default: 10
format: int32
- name: page
in: query
description: page
required: false
type: integer
default: 0
format: int32
- name: produktAnbieter
in: query
description: filter by loan provider
required: false
type: string
- name: sort
in: query
description: "sort mode, default descending"
required: false
type: string
default: absteigend
- name: X-TraceId
in: header
description: "your request id, https://docs.api.europace.de/common/tracing/"
required: false
type: string
security:
- OAuth2:
- baufinanzierung:antrag:lesen
responses:
"200":
description: OK
schema:
$ref: "#/definitions/Antraege"
"400":
description: Client Error
schema:
$ref: "#/definitions/Error"
"401":
description: Unauthorized
schema:
$ref: "#/definitions/Error"
"403":
description: Forbidden
schema:
$ref: "#/definitions/Error"
"404":
description: Not Found
schema:
$ref: "#/definitions/Error"
"422":
description: Unprocessable Entity
schema:
$ref: "#/definitions/Error"
"500":
description: Internal Server Error
schema:
$ref: "#/definitions/Error"
/v2/antraege/{vorgang}:
get:
tags:
- Antraege
summary: get list of all applications of a case
description: "As advisor, you'll get a list of all applications of your case. "
operationId: getAntraegeByVorgangNummer
produces:
- application/json;charset=UTF-8
parameters:
- name: vorgang
in: path
description: case-id
required: true
type: string
x-example: AB1234
- name: X-TraceId
in: header
description: "your request id, https://docs.api.europace.de/common/tracing/"
required: false
type: string
security:
- OAuth2:
- baufinanzierung:antrag:lesen
responses:
"200":
description: OK
schema:
$ref: "#/definitions/Antraege"
"400":
description: Client Error
schema:
$ref: "#/definitions/Error"
"401":
description: Unauthorized
schema:
$ref: "#/definitions/Error"
"403":
description: Forbidden
schema:
$ref: "#/definitions/Error"
"404":
description: Not Found
schema:
$ref: "#/definitions/Error"
"422":
description: Unprocessable Entity
schema:
$ref: "#/definitions/Error"
"500":
description: Internal Server Error
schema:
$ref: "#/definitions/Error"
/v2/antraege/{vorgang}/{antrag}:
get:
tags:
- Antraege
summary: get list of approvals of an application
description: "As loan Provider, you'll get a list of approvals with data for validation and decision."
operationId: getAntrag
produces:
- application/json;charset=UTF-8
parameters:
- name: antrag
in: path
description: iterator-solution
required: true
type: integer
format: int32
x-example: 3
- name: vorgang
in: path
description: case-id
required: true
type: string
x-example: AB1234
- name: X-TraceId
in: header
description: "your request id, https://docs.api.europace.de/common/tracing/"
required: false
type: string
security:
- OAuth2:
- baufinanzierung:antrag:lesen
responses:
"200":
description: OK
schema:
$ref: "#/definitions/Antraege"
"400":
description: Client Error
schema:
$ref: "#/definitions/Error"
"401":
description: Unauthorized
schema:
$ref: "#/definitions/Error"
"403":
description: Forbidden
schema:
$ref: "#/definitions/Error"
"404":
description: Not Found
schema:
$ref: "#/definitions/Error"
"422":
description: Unprocessable Entity
schema:
$ref: "#/definitions/Error"
"500":
description: Internal Server Error
schema:
$ref: "#/definitions/Error"
/v2/antraege/{vorgang}/{antrag}/{teilantrag}:
get:
tags:
- Antraege
summary: get application
description: "As loan Provider, you'll get all data of an application for validation and decision."
operationId: getAntrag_1
produces:
- application/json;charset=UTF-8
parameters:
- name: antrag
in: path
description: iterator-solution
required: true
type: integer
format: int32
x-example: 3
- name: teilantrag
in: path
description: iterator-application
required: true
type: integer
format: int32
x-example: 1
- name: vorgang
in: path
description: case-id
required: true
type: string
x-example: AB1234
- name: X-TraceId
in: header
description: "your request id, https://docs.api.europace.de/common/tracing/"
required: false
type: string
security:
- OAuth2:
- baufinanzierung:antrag:lesen
responses:
"200":
description: OK
schema:
$ref: "#/definitions/Antrag"
"400":
description: Client Error
schema:
$ref: "#/definitions/Error"
"401":
description: Unauthorized
schema:
$ref: "#/definitions/Error"
"403":
description: Forbidden
schema:
$ref: "#/definitions/Error"
"404":
description: Not Found
schema:
$ref: "#/definitions/Error"
"422":
description: Unprocessable Entity
schema:
$ref: "#/definitions/Error"
"500":
description: Internal Server Error
schema:
$ref: "#/definitions/Error"
patch:
tags:
- Antraege
summary: patch application
description: "As loan provider, update the planned approving date, the loan officer contact details and your own reference for well informed advisors and easy conversations with sales."
operationId: updateAntrag
consumes:
- application/json-patch+json
- application/json
produces:
- "*/*"
parameters:
- name: antrag
in: path
description: iterator-solution
required: true
type: integer
format: int32
x-example: 3
- name: Authorization
in: header
description: "Bearer {access-token}"
required: false
type: string
- in: body
name: patchOperations
description: patchOperations
required: true
schema:
type: array
items:
$ref: "#/definitions/PatchOperation"
- name: teilantrag
in: path
description: approval-iterator
required: true
type: integer
format: int32
x-example: 1
- name: vorgang
in: path
description: case-id
required: true
type: string
x-example: AB1234/1/2
- name: X-Authentication
in: header
description: |-
Deprecated.
Pls use https://docs.api.europace.de/common/authentifizierung/authorization-api/
required: false
type: string
- name: X-TraceId
in: header
description: "your request id, https://docs.api.europace.de/common/tracing/"
required: false
type: string
security:
- OAuth2:
- baufinanzierung:antrag:schreiben
responses:
"204":
description: No Content
"401":
description: Unauthorized
"403":
description: Forbidden
/v2/antraege/{vorgang}/{antrag}/{teilantrag}/angebot:
get:
tags:
- Antraege
summary: get offer
description: "As loan provider, you'll get all loan details wich are accepted by the customer."
operationId: getAngebot
produces:
- application/json;charset=UTF-8
parameters:
- name: antrag
in: path
description: iterator-solution
required: true
type: integer
format: int32
x-example: 3
- name: teilantrag
in: path
description: approval-iterator
required: true
type: integer
format: int32
x-example: 1
- name: vorgang
in: path
description: case-id
required: true
type: string
x-example: AB1234
- name: X-TraceId
in: header
description: "your request id, https://docs.api.europace.de/common/tracing/"
required: false
type: string
security:
- OAuth2:
- baufinanzierung:antrag:lesen
responses:
"200":
description: OK
schema:
$ref: "#/definitions/AngebotZumAntrag"
"400":
description: Client Error
schema:
$ref: "#/definitions/Error"
"401":
description: Unauthorized
schema:
$ref: "#/definitions/Error"
"403":
description: Forbidden
schema:
$ref: "#/definitions/Error"
"404":
description: Not Found
schema:
$ref: "#/definitions/Error"
"422":
description: Unprocessable Entity
schema:
$ref: "#/definitions/Error"
"500":
description: Internal Server Error
schema:
$ref: "#/definitions/Error"
/v2/antraege/{vorgang}/{antrag}/{teilantrag}/angebot/zahlungsplaene:
get:
tags:
- Antraege
summary: get redemption plan
description: "As loan provider, you'll get a redemption plan of the loan."
operationId: getZahlungsplaene
produces:
- application/json;charset=UTF-8
parameters:
- name: antrag
in: path
description: iterator-solution
required: true
type: integer
format: int32
x-example: 3
- name: teilantrag
in: path
description: approval-iterator
required: true
type: integer
format: int32
x-example: 1
- name: vorgang
in: path
description: case-id
required: true
type: string
x-example: AB1234
- name: X-TraceId
in: header
description: "your request id, https://docs.api.europace.de/common/tracing/"
required: false
type: string
security:
- OAuth2:
- baufinanzierung:antrag:lesen
responses:
"200":
description: OK
schema:
$ref: "#/definitions/Zahlungsplaene"
"400":
description: Client Error
schema:
$ref: "#/definitions/Error"
"401":
description: Unauthorized
schema:
$ref: "#/definitions/Error"
"403":
description: Forbidden
schema:
$ref: "#/definitions/Error"
"404":
description: Not Found
schema:
$ref: "#/definitions/Error"
"422":
description: Unprocessable Entity
schema:
$ref: "#/definitions/Error"
"500":
description: Internal Server Error
schema:
$ref: "#/definitions/Error"
/v2/antraege/{vorgang}/{antrag}/{teilantrag}/ansprechpartner:
get:
tags:
- Antraege
summary: get clerk
description: "As loan provider, you'll get the contact details of the clerk for communication."
operationId: getAnsprechpartner
produces:
- application/json;charset=UTF-8
parameters:
- name: antrag
in: path
description: application-id
required: true
type: integer
format: int32
x-example: 3
- name: teilantrag
in: path
description: iterator-application
required: true
type: integer
format: int32
x-example: 1
- name: vorgang
in: path
description: case-id
required: true
type: string
x-example: AB1234
- name: X-TraceId
in: header
description: "your request id, https://docs.api.europace.de/common/tracing/"
required: false
type: string
security:
- OAuth2:
- baufinanzierung:antrag:lesen
responses:
"200":
description: OK
schema:
$ref: "#/definitions/Partner"
"400":
description: Client Error
schema:
$ref: "#/definitions/Error"
"401":
description: Unauthorized
schema:
$ref: "#/definitions/Error"
"403":
description: Forbidden
schema:
$ref: "#/definitions/Error"
"404":
description: Not Found
schema:
$ref: "#/definitions/Error"
"422":
description: Unprocessable Entity
schema:
$ref: "#/definitions/Error"
"500":
description: Internal Server Error
schema:
$ref: "#/definitions/Error"
/v2/antraege/{vorgang}/{antrag}/{teilantrag}/gegenangebot:
post:
tags:
- Antraege
summary: create counteroffer
description: "As loan provider, you can resend an adjusted offer, to create a working solution for the customer. \n\nA counteroffer is an adjusted offer based on the application set by the loan provider.\n\nIf a counteroffer is created, the original offer will be marked as 'ABGELEHNT' and a new offer will be created. The new offer is automatically marked as `UNTERSCHRIEBEN ` from the loan provider. \n\nA single loan or a combination of loans can be offered as a counteroffer."
operationId: erstelleGegenangebot
consumes:
- application/json
produces:
- application/json
parameters:
- name: antrag
in: path
description: iterator-solution
required: true
type: integer
format: int32
x-example: 3
- name: Authorization
in: header
description: "Bearer {access-token}"
required: false
type: string
- in: body
name: gegenangebot
description: gegenangebot
required: true
schema:
$ref: "#/definitions/Gegenangebot"
- name: teilantrag
in: path
description: approval-iterator
required: true
type: integer
format: int32
x-example: 1
- name: vorgang
in: path
description: case-id
required: true
type: string
x-example: AB1234
- name: X-Authentication
in: header
description: |-
Deprecated.
Pls use https://docs.api.europace.de/common/authentifizierung/authorization-api/
required: false
type: string
- name: X-TraceId
in: header
description: "your request id, https://docs.api.europace.de/common/tracing/"
required: false
type: string
security:
- OAuth2:
- baufinanzierung:antrag:schreiben
- baufinanzierung:echtgeschaeft
responses:
"201":
description: Created
schema:
type: string
"400":
description: Client Error
schema:
$ref: "#/definitions/Problem"
"401":
description: Unauthorized
"403":
description: Forbidden
"404":
description: Not Found
/v2/antraege/{vorgang}/{antrag}/{teilantrag}/nachricht:
post:
tags:
- Antraege
summary: send message
description: "As loan provider, you can send a message to the advisor to communicate without a denied-state. \n\nImportant! Please prefer `set state` for communication with advisor, because states are more helpful for process reporting. \n\nThis method should be your last choice."
operationId: addNachricht_1
consumes:
- application/json
produces:
- application/json;charset=UTF-8
parameters:
- name: antrag
in: path
description: iterator-solution
required: true
type: integer
format: int32
x-example: 3
- name: Authorization
in: header
description: "Bearer {access-token}"
required: false
type: string
- in: body
name: nachrichtDTO
description: nachrichtDTO
required: true
schema:
$ref: "#/definitions/NachrichtDTO"
- name: teilantrag
in: path
description: iterator-application
required: true
type: integer
format: int32
x-example: 1
- name: vorgang
in: path
description: case-id
required: true
type: string
x-example: AB1234
- name: X-Authentication
in: header
description: |-
Deprecated.
Pls use https://docs.api.europace.de/common/authentifizierung/authorization-api/
required: false
type: string
- name: X-TraceId
in: header
description: "your request id, https://docs.api.europace.de/common/tracing/"
required: false
type: string
security:
- OAuth2:
- baufinanzierung:antrag:schreiben
responses:
"201":
description: Created
"401":
description: Unauthorized
"403":
description: Forbidden
"404":
description: Not Found
/v2/antraege/{vorgang}/{antrag}/{teilantrag}/status:
post:
tags:
- Antraege
summary: set state
description: "As loan provider, you can set a state for an application to inform the advisor about your descision.\n\nIf you set a state for an application the adivsor will be automatically informed by your descision and message. You can use it, to send advisor a message if you choose the right state and use the property `kommentar`. "
operationId: setAntragsStatus_1
consumes:
- application/json
produces:
- application/json;charset=UTF-8
parameters:
- name: antrag
in: path
description: iterator-solution
required: true
type: integer
format: int32
x-example: 3
- name: Authorization
in: header
description: "Bearer {access-token}"
required: false
type: string
- in: body
name: statusDTO
description: statusDTO
required: true
schema:
$ref: "#/definitions/StatusDTO"
- name: teilantrag
in: path
description: iterator-application
required: true
type: integer
format: int32
x-example: 1
- name: vorgang
in: path
description: case-id
required: true
type: string
x-example: AB1234
- name: X-Authentication
in: header
description: |-
Deprecated.
Pls use https://docs.api.europace.de/common/authentifizierung/authorization-api/
required: false
type: string
- name: X-TraceId
in: header
description: "your request id, https://docs.api.europace.de/common/tracing/"
required: false
type: string
security:
- OAuth2:
- baufinanzierung:antrag:schreiben
responses:
"201":
description: Created
"202":
description: Accepted
"401":
description: Unauthorized
"403":
description: Forbidden
"404":
description: Not Found
securityDefinitions:
Bearer:
type: apiKey
name: Authorization
in: header
OAuth2:
type: oauth2
tokenUrl: https://api.europace.de/auth/access-token
flow: application
scopes:
baufinanzierung:echtgeschaeft: to use api in production mode
baufinanzierung:antrag:lesen: to get application information
baufinanzierung:antrag:schreiben: "to update application data (eg state, loan office and own reference)"
definitions:
Absicherung:
type: object
properties:
abgesicherteRisiken:
type: array
items:
$ref: "#/definitions/RisikoAbsicherung"
externeAngebotsNummer:
type: string
gesamtPraemie:
type: number
praemienZahlungsweise:
type: string
enum:
- EINMALIG
- HALBJAEHRLICH
- JAEHRLICH
- MONATLICH
- VIERTELJAEHRLICH
tarifBezeichnung:
type: string
tarifKennung:
type: string
versichertePersonId:
type: string
versicherungsArt:
type: string
versicherungsNummer:
type: string
versicherungsZeitraum:
$ref: "#/definitions/VersicherungsZeitraum"
title: Absicherung
AbsicherungsAngaben:
type: object
properties:
betraegtWoechentlicheArbeitsZeitMindestens15Stunden:
type: boolean
description: TRUE if is working more than 15 hours per week
title: AbsicherungsAngaben
AngebotZumAntrag:
type: object
properties:
_links:
$ref: "#/definitions/Links"
absicherungen:
type: array
description: payment protection insurance
items:
$ref: "#/definitions/Absicherung"
bausparvertraege:
type: array
items:
$ref: "#/definitions/Bausparvertrag"
beleihungsRechnung:
description: mortgage value calculation
$ref: "#/definitions/BeleihungsRechnung"
bewertungDesAngebots:
type: string
description: type of advisory responsability
enum:
- ANGEBOT_ENTSPRICHT_DEM_WUNSCH_DES_KUNDEN
- ANGEBOT_ENTSPRICHT_DER_EMPFEHLUNG_DES_KUNDENBETREUERS
bonitaet:
type: array
description: creditworthiness
items:
$ref: "#/definitions/Bonitaet"
darlehen:
type: array
items:
$ref: "#/definitions/Darlehen"
erzeugtAm:
type: string
format: date-time
description: date offer created
kennung:
type: string
description: additional offer name
machbarkeitsStatus:
type: string
description: feasibility state
enum:
- MACHBAR
- NICHT_MACHBAR
- UNTER_VORBEHALT_PRODUZENT
meldungen:
type: array
items:
$ref: "#/definitions/Meldung"
pruefungsErgebnisse:
type: array
description: result of europace-offer-validation
items:
$ref: "#/definitions/AngebotsPruefungsErgebnis"
title: AngebotZumAntrag
description: offer details
AngebotsPruefungsErgebnis:
type: object
properties:
bewertung:
$ref: "#/definitions/BewertungDurchProduktAnbieter"
kfwKonditionsReservierung:
$ref: "#/definitions/KfwKonditionsReservierung"
produktAnbieterId:
type: string
title: AngebotsPruefungsErgebnis
AnnuitaetenDarlehen:
title: AnnuitaetenDarlehen
allOf:
- $ref: "#/definitions/GegenangebotDarlehen"
- type: object
required:
- anfaenglicheTilgung
- bereitstellungsZinsFreieZeitInMonaten
- darlehensBetrag
- darlehensTyp
- effektivZins
- laufzeitKalkulatorischInJahren
- rateMonatlich
- sollZins
- sonderTilgungJaehrlich
- vertriebsProvisionGesamtAbsolut
- zinsBindungInJahren
discriminator: darlehensTyp
properties:
anfaenglicheTilgung:
type: number
bereitstellungsZins:
type: number
bereitstellungsZinsFreieZeitInMonaten:
type: integer
format: int32
darlehensBetrag:
type: number
darlehensTyp:
type: string
description: The value of this enum determines which class is being used. See the implementing classes for more details.
enum:
- ANNUITAETEN_DARLEHEN
- FORWARD_DARLEHEN
- KFW_DARLEHEN
- PRIVAT_DARLEHEN
- REGIONAL_FOERDER_DARLEHEN
- VARIABLES_DARLEHEN
- ZWISCHEN_FINANZIERUNG
effektivZins:
type: number
laufzeitKalkulatorischInJahren:
type: integer
format: int32
produktDetails:
type: string
description: description for advisor
rateMonatlich:
type: number
sollZins:
type: number
sonderTilgungJaehrlich:
type: number
tilgungsBeginnAm:
type: string
format: date-time
example: 2020-03-28
vertriebsProvisionGesamtAbsolut:
type: number
description: "sum of sales commission (advisor and overhead), europace fee is excluded"
zinsBindungInJahren:
type: integer
format: int32
title: AnnuitaetenDarlehen
description: extends GegenangebotDarlehen
description: extends GegenangebotDarlehen
Anschrift:
type: object
properties:
hausnummer:
type: string
description: housenumber
ort:
type: string
description: place
plz:
type: string
description: zip-code
strasse:
type: string
description: street
title: Anschrift
Antraege:
type: object
properties:
_links:
$ref: "#/definitions/PaginationLinks"
antraege:
type: array
items:
$ref: "#/definitions/Antrag"
title: Antraege
description: list of applications
Antrag: