The docs for intercom-node, https://github.com/intercom/intercom-node, say that I can access my users data with the client.users.list or client.users.listBy or client.users.find.
The problem is I am only getting 50 users in the body of the response object (ie resp.body.users.length is 50) and I need all the users. Does anyone know how to query the API to get all the users from the intercom.io app?
var Intercom = require('intercom-client')
var client = new Intercom.Client('<APP ID>', '<API KEY>')
client.users.list( function(err, resp) {
console.log(resp.body.users.length)
})