Comment on page
Query a Single Document
Here we will show you how you retrieve a single document.
var options = {};
api.getDocument('969464870959452160', options)
.then(result => {
// futher implementation
})
.catch(err => {
throw err;
})
Last modified 5yr ago