IBI-helpMe

ibihelpme_GetScreenshots

Signature

ibihelpme_GetScreenshots(): string

Description

Returns the list of 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 screenshotsSerialized = window.external.ibihelpme_GetScreenshots();
 
var screenshots = JSON.parse(screenshotsSerialized);
 
displayScreenshots(screenshots);