diff --git a/lib/Organization.js b/lib/Organization.js index 0a8177b4..9bb9b53b 100644 --- a/lib/Organization.js +++ b/lib/Organization.js @@ -65,7 +65,7 @@ class Organization extends Requestable { * @return {Promise} - the promise for the http request */ listMembers(options, cb) { - return this._request('GET', `/orgs/${this.__name}/members`, options, cb); + return this._requestAllPages(`/orgs/${this.__name}/members`, options, cb); } /**