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

Available query options:

Last updated