|
Signature |
|
|---|---|
|
Description |
Initiates the submission of the support case |
|
Available from API version |
1.0.0 |
Parameter
|
Name |
Type |
Description |
|---|---|---|
|
formularData |
|
JSON object with key value pairs of the user inputs
|
|
systemInformationData |
|
JSON object with key value pairs of the determined system information values
|
Return value
No return value
Example
JavaScript
function submit()
{
if(!inputComplete())
return;
var formularFieldValues = readFormularFieldValues();
var systemInformationItemValues = readSystemInformationItemValues();
window.external.ibihelpme_Submit(formularFieldValues, systemInformationItemValues);
}