Wiki-Quellcode von Release-Notes

Zuletzt geändert von MACH formsolutions am 08.10.2025

Verstecke letzte Bearbeiter
MACH formsolutions 5.1 1 = Schnittstellenversion 4.1 (Softwareversion 4.104.0) =
MACH formsolutions 1.1 2
MACH formsolutions 5.8 3 In der Version 4.1 gibt es zusätzliche Felder:
4
MACH formsolutions 5.9 5 |=Feld|=Inhalt
6 |applicantFirstname|Vorname
7 |applicantLastname|Nachname
MACH formsolutions 5.11 8 |applicantType|//NATURAL_PERSON// oder //NOT_NATURAL_PERSON//
9 |applicationInfoText|(((
MACH formsolutions 5.12 10 Wird z.B. von Portalen benutzt, um durch Vorbefüllung ein Referenzzeichen zu übergeben.
11
MACH formsolutions 5.11 12 Dynamische Befüllung dieses Werts im Assistenten durch eine Komponente mit der "Bezeichnung technisch": "INFOTEXT"
13 )))
MACH formsolutions 5.5 14
MACH formsolutions 5.13 15 (% class="wikigeneratedid" %)
MACH formsolutions 5.21 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.
MACH formsolutions 5.12 17
MACH formsolutions 5.21 18 == Response für eine natürliche Person in V4.0 ==
MACH formsolutions 3.1 19
20 {{code language="json"}}
21 {
MACH formsolutions 7.1 22 "applicantEMail": "max.mustermann@muster.de",
MACH formsolutions 3.1 23 "applicantName": "Max Mustermann ",
24 "attachments": null,
25 ...
26 }
27 {{/code}}
28
MACH formsolutions 6.2 29 == (% id="cke_bm_355S" style="display:none" %) (%%)Response für eine natürliche Person ab V4.1 ==
MACH formsolutions 3.1 30
31 {{code language="json"}}
32 {
MACH formsolutions 7.1 33 "applicantEMail": "max.mustermann@muster.de",
MACH formsolutions 4.1 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
MACH formsolutions 6.2 45 == Response für eine nicht natürliche Person in V4.0 ==
MACH formsolutions 4.1 46
47 {{code language="json"}}
48 {
MACH formsolutions 7.1 49 "applicantEMail": "info@muster.de",
MACH formsolutions 6.2 50 "applicantName": "Muster GmbH Max Mustermann ",
MACH formsolutions 3.1 51 "attachments": null,
52 ...
53 }
54 {{/code}}
55
MACH formsolutions 6.2 56 == Response für eine nicht natürliche Person ab V4.1 ==
MACH formsolutions 3.1 57
58 {{code language="json"}}
59 {
MACH formsolutions 7.1 60 "applicantEMail": "info@muster.de",
61 "applicantName": "Muster GmbH Max Mustermann",
MACH formsolutions 3.1 62 "applicantFirstname": "Max",
63 "applicantLastname": "Mustermann",
MACH formsolutions 7.1 64 "applicantCompanyname": "Muster GmbH",
MACH formsolutions 4.1 65 "applicantType": "NOT_NATURAL_PERSON",
MACH formsolutions 3.1 66 "applicationInfoText": "Standardwert InfoText",
67 "attachments": null,
68 ...
69 }
70 {{/code}}
71
72
MACH formsolutions 1.1 73