IBI-helpMe

ibihelpme_GetScreenshotThumbnails

Signature

ibihelpme_GetScreenshotThumbnails(): string

Description

Returns a list of thumbnails of the created screenshots

Available from API version

1.0.0

Parameter

No parameters required

Return value

string

JSON array in the following format:

[
	{
	 "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

JavaScript
var screenshotThumbnailsSerialized = window.external.ibihelpme_GetScreenshotThumbnails();
 
var screenshotThumbnails = JSON.parse(screenshotThumbnailsSerialized);
 
displayScreenshots(screenshotThumbnails);

For more information see