Just ran into this.
- I'm calling rc.restapi().account().callLog().list( { perPage:250 } )** but I know I have a lot more call log entries than 250
- The returned object has the required navigation.nextPage.uri to the next page of data.
- There is no documented way (or at least I can't find it) as what to do next to get the next page
The list() method should collect all the pages
or do something like:
let page1 = rc.restapi().account().callLog().list( {perPage:250 } )
let page2 = rc.restapi().account().callLog().next( page1 )