I'm trying to figure out how to get devicepins for a given user like you see in the enterprise admin console when you search a user's name.
I only see how to get all devicepins (which there's a lot) and use the next_marker to page through it but I don't see a way to filter it by user.
adminAPIClient.devicePins.getAll(filter, function(err, data) {
res.render('devicepins', {
error: err,
errorDetails: util.inspect(err),
devicepins: data ? data.entries: [],
marker: data.next_marker
});
});Here's my sample app ui:

