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;
  })

Available query options:

Last updated