Workfront / workfront-api

A Workfront API for Node.js and Web
http://workfront.github.io/workfront-api
Apache License 2.0
43 stars 21 forks source link

Hour Search ended after 99 results #1078

Closed amercer86 closed 2 years ago

amercer86 commented 2 years ago

I'm trying to pull all hours logged to a project last month:

https://myURL.my.workfront.com/attask/api/v9.0/hour/search?projectID=987654321&entryDate=$$TODAYb-1m&entryDate_Range=$$TODAYe-1m&entryDate_Mod=between

This works great except the api stops returning results after 99 records. I expect to have several hundred results.

bhovhannes commented 2 years ago

100 is a default limit for all operations. You can try to pass $$LIMIT param set to higher value.

amercer86 commented 2 years ago

Excellent! Thank you @bhovhannes!