Wiki-Quellcode von Release-Notes

Zuletzt geändert von MACH ProForms GmbH am 24.02.2025

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