IBI-helpMe

ibihelpme_Submit

Signature

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

Description

Initiates the submission of the support case

Available from API version

1.0.0

Parameter

Name

Type

Description

formularData

string

JSON object with key value pairs of the user inputs

{
	"subject":"Error"
	,
	...
	,
	"description":"If I start Application A, an error message is displayed"
}

systemInformationData

string

JSON object with key value pairs of the determined system information values

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

Return value

No return value

Example

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