Skip to main content
Skip table of contents

ibihelpme_GetScreenshots

Signatureibihelpme_GetScreenshots(): string
Description

Returns the list of created screenshots

Available from API version1.0.0

Parameter

No parameters required

Return value

string

JSON array in the following format

CODE
[
	{
	 "id": "F76433A2-D0C0-492C-ACB4-73D9C712F8C0", 
	 "creationDate":"2017-01-31T13:23:01.000",
	 "data":"data:image/png;base64,..."
	}
,
...
,
	{
	 "id": "5EDF263D-13E2-49A0-B5CA-AC199972C29C", 
	 "creationDate":"2017-01-31T13:35:59.120",
	 "data":"data:image/png;base64,..."
	}
]

For more information see ibihelpme_CreateScreenshot

Example

JS
var screenshotsSerialized = window.external.ibihelpme_GetScreenshots();
 
var screenshots = JSON.parse(screenshotsSerialized);
 
displayScreenshots(screenshots);
JavaScript errors detected

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

If this problem persists, please contact our support.