Skip to main content
Skip table of contents

ibihelpme_GetScreenshotThumbnails

Signature
ibihelpme_GetScreenshotThumbnails(): string
DescriptionReturns a list of thumbnails of the 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 screenshotThumbnailsSerialized = window.external.ibihelpme_GetScreenshotThumbnails();
 
var screenshotThumbnails = JSON.parse(screenshotThumbnailsSerialized);
 
displayScreenshots(screenshotThumbnails);

For more information see 

JavaScript errors detected

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

If this problem persists, please contact our support.