Skip to main content
Skip table of contents

ibihelpme_Submit

Signature

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

DescriptionInitiates the submission of the support case
Available from API version1.0.0

Parameter

NameTypeDescription
formularDatastring

JSON object with key value pairs of the user inputs

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

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

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

Return value

No return value

Example

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


JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.