Wiki-Quellcode von Release-Notes

Zuletzt geändert von MACH ProForms GmbH am 24.02.2025

Zeige letzte Bearbeiter
1 = Schnittstellenversion 4.1 (Softwareversion 4.104.0) =
2
3 In der Version 4.1 gibt es zusätzliche Felder:
4
5 |=Feld|=Inhalt
6 |applicantFirstname|Vorname
7 |applicantLastname|Nachname
8 |applicantType|//NATURAL_PERSON// oder //NOT_NATURAL_PERSON//
9 |applicationInfoText|(((
10 Wird z.B. von Portalen benutzt, um durch Vorbefüllung ein Referenzzeichen zu übergeben.
11
12 Dynamische Befüllung dieses Werts im Assistenten durch eine Komponente mit der "Bezeichnung technisch": "INFOTEXT"
13 )))
14
15 (% class="wikigeneratedid" %)
16 Die tabellarische Darstellung der Submission-API-Antwort enthält mit Version 4.1 mehr Informationen, die eine Zuordnung der Einreichungen erleichtern. Dies wird durch die Ergänzung dieser Felder auf der ersten Ebene des Schemas erreicht.
17
18 == Response für eine natürliche Person in V4.0 ==
19
20 {{code language="json"}}
21 {
22 "applicantEMail": "max.mustermann@machproforms.de",
23 "applicantName": "Max Mustermann ",
24 "attachments": null,
25 ...
26 }
27 {{/code}}
28
29 == (% id="cke_bm_355S" style="display:none" %) (%%)Response für eine Natürliche Person ab V4.1 ==
30
31 {{code language="json"}}
32 {
33 "applicantEMail": "max.mustermann@machproforms.de",
34 "applicantName": "Max Mustermann",
35 "applicantFirstname": "Max",
36 "applicantLastname": "Mustermann",
37 "applicantCompanyname": null,
38 "applicantType": "NATURAL_PERSON",
39 "applicationInfoText": "Standardwert InfoText",
40 "attachments": null,
41 ...
42 }
43 {{/code}}
44
45 == Response für eine Nicht Natürliche Person in V4.0 ==
46
47 {{code language="json"}}
48 {
49 "applicantEMail": "info@machproforms.de",
50 "applicantName": "MACH ProFroms GmbH Max Mustermann ",
51 "attachments": null,
52 ...
53 }
54 {{/code}}
55
56 == Response für eine Nicht Natürliche Person ab V4.1 ==
57
58 {{code language="json"}}
59 {
60 "applicantEMail": "info@machproforms.de",
61 "applicantName": "MACH ProFroms GmbH Max Mustermann",
62 "applicantFirstname": "Max",
63 "applicantLastname": "Mustermann",
64 "applicantCompanyname": "MACH ProFroms GmbH",
65 "applicantType": "NOT_NATURAL_PERSON",
66 "applicationInfoText": "Standardwert InfoText",
67 "attachments": null,
68 ...
69 }
70 {{/code}}
71
72
73