Welcome to the new Box Support website. Check out all the details here on what’s changed.

What is the box-node-sdk call to get devicepins for a user?

Answered
New post

Comments

1 comment

  • kendomen

    So I took 's advice and ended up getting all device pins since there's no api to filter by name and this seems to work.

     

    app.get('/devicepins', ensureAuthenticated, function(req, res) {
      var list = [];
      getDevicePins(null, list)
        .then(function() {
          var result = [];
          for (var i=0; i

     9000.png

     

    0
    Comment actions Permalink

Please sign in to leave a comment.