IBI-helpMe

ibihelpme_Submit

Signatur

ibihelpme_Submit(formularData: string, systemInformationData: string): void

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

{
	"subject":"Fehler"
	,
	...
	,
	"description":"Wenn ich Anwendung A starte, erscheint eine Fehlermeldung."
}

systemInformationData

string

JSON-Objekt mit Key-Value-Paaren, der ermittelten Systeminformationswerte

{
	"ActiveDirectory.User.Mail":"mail@<yourcompany>.<domain>"
	,
	...
	,
	"Local.Username":"demo\DemoUser"
}

Rückgabewert

Kein Rückgabewert

Beispiel

JavaScript
function submit()
{
	if(!inputComplete())
		return;
 
	var formularFieldValues = readFormularFieldValues();
	var systemInformationItemValues = readSystemInformationItemValues();
 
	window.external.ibihelpme_Submit(formularFieldValues, systemInformationItemValues);
}