ibihelpme_Submit
| Signatur | 
 | 
|---|---|
| Beschreibung | Leitet die Übermittlung des Supportfalls ein | 
| Verfügbar ab API-Version | 1.0.0 | 
Parameter
| Name | Typ | Beschreibung | 
|---|---|---|
| formularData | string | JSON-Objekt mit Key-Value-Paaren, der Benutzereingaben 
        CODE
      | 
| systemInformationData | string | JSON-Objekt mit Key-Value-Paaren, der ermittelten Systeminformationswerte 
        CODE
      | 
Rückgabewert
Kein Rückgabewert
Beispiel
        JS
    
    function submit()
{
	if(!inputComplete())
		return;
 
	var formularFieldValues = readFormularFieldValues();
	var systemInformationItemValues = readSystemInformationItemValues();
 
	window.external.ibihelpme_Submit(formularFieldValues, systemInformationItemValues);
}