Query an Asset

Here we will show you how you retrieve a single asset

var options = {};

api.getAsset('968393848009134080', options)
  .then(result => {
    // futher implementation
  })
  .catch(err => {
    throw err;
  })

You can also use the query option embedAssets: true to include assets when making queries for documents.

Available query options:

Last updated