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