Comment on page

/api/library/history

GET Get the list of libraries recently opened by the Application.
Sample Code:
var requestOptions = {
method: 'GET',
redirect: 'follow'
};
fetch("http://localhost:41595/api/library/history", requestOptions)
.then(response => response.json())
.then(result => console.log(result))
.catch(error => console.log('error', error));
Results Returned:
{
"status": "success",
"data": [
"/Users/augus/Google Drive/Design fields.library",
"/Users/augus/Google Drive/Office Style.library",
"/Users/augus/Google Drive/Design Assets.library"
]
}