ibihelpme_Submit
| Signature | 
 | 
|---|---|
| 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 
        CODE
      | 
| systemInformationData | string | JSON object with key value pairs of the determined system information values 
        CODE
      | 
Return value
No return value
Example
        JS
    
    function submit()
{
	if(!inputComplete())
		return;
 
	var formularFieldValues = readFormularFieldValues();
	var systemInformationItemValues = readSystemInformationItemValues();
 
	window.external.ibihelpme_Submit(formularFieldValues, systemInformationItemValues);
}