intercom-node のドキュメントhttps://github.com/intercom/intercom-nodeには、client.users.list または client.users.listBy または client.users.find を使用してユーザー データにアクセスできると書かれています。
問題は、応答オブジェクトの本文で 50 人のユーザーしか取得できず (つまり、resp.body.users.length が 50)、すべてのユーザーが必要なことです。API をクエリして、intercom.io アプリからすべてのユーザーを取得する方法を知っている人はいますか?
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)
})