Release-Notes
Zuletzt geändert von MACH ProForms GmbH am 24.02.2025
Schnittstellenversion 4.1 (Softwareversion 4.104.0)
In der Version 4.1 gibt es zusätzliche Felder:
Feld | Inhalt |
---|---|
applicantFirstname | Vorname |
applicantLastname | Nachname |
applicantType | NATURAL_PERSON oder NOT_NATURAL_PERSON |
applicationInfoText | Wird z.B. von Portalen benutzt, um durch Vorbefüllung ein Referenzzeichen zu übergeben. Dynamische Befüllung dieses Werts im Assistenten durch eine Komponente mit der "Bezeichnung technisch": "INFOTEXT" |
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.
Response für eine natürliche Person in V4.0
{
"applicantEMail": "max.mustermann@machproforms.de",
"applicantName": "Max Mustermann ",
"attachments": null,
...
}
"applicantEMail": "max.mustermann@machproforms.de",
"applicantName": "Max Mustermann ",
"attachments": null,
...
}
Response für eine Natürliche Person ab V4.1
{
"applicantEMail": "max.mustermann@machproforms.de",
"applicantName": "Max Mustermann",
"applicantFirstname": "Max",
"applicantLastname": "Mustermann",
"applicantCompanyname": null,
"applicantType": "NATURAL_PERSON",
"applicationInfoText": "Standardwert InfoText",
"attachments": null,
...
}
"applicantEMail": "max.mustermann@machproforms.de",
"applicantName": "Max Mustermann",
"applicantFirstname": "Max",
"applicantLastname": "Mustermann",
"applicantCompanyname": null,
"applicantType": "NATURAL_PERSON",
"applicationInfoText": "Standardwert InfoText",
"attachments": null,
...
}
Response für eine Nicht Natürliche Person in V4.0
{
"applicantEMail": "info@machproforms.de",
"applicantName": "MACH ProFroms GmbH Max Mustermann ",
"attachments": null,
...
}
"applicantEMail": "info@machproforms.de",
"applicantName": "MACH ProFroms GmbH Max Mustermann ",
"attachments": null,
...
}
Response für eine Nicht Natürliche Person ab V4.1
{
"applicantEMail": "info@machproforms.de",
"applicantName": "MACH ProFroms GmbH Max Mustermann",
"applicantFirstname": "Max",
"applicantLastname": "Mustermann",
"applicantCompanyname": "MACH ProFroms GmbH",
"applicantType": "NOT_NATURAL_PERSON",
"applicationInfoText": "Standardwert InfoText",
"attachments": null,
...
}
"applicantEMail": "info@machproforms.de",
"applicantName": "MACH ProFroms GmbH Max Mustermann",
"applicantFirstname": "Max",
"applicantLastname": "Mustermann",
"applicantCompanyname": "MACH ProFroms GmbH",
"applicantType": "NOT_NATURAL_PERSON",
"applicationInfoText": "Standardwert InfoText",
"attachments": null,
...
}