In the documentation on Actions Nested Resource it says that we can use the following parameters:
but in the paragraph Nested Actions with Query Params in the curl example it uses
limit and page are not working on the curl example, meanwhile actions_format (which is not described) accept the count parameter.
So, I don't understand when or how to use limit and page.
I have a board with more than 1000 actions, I'd like to access those above 1000.
Can someone provide an example ?
i have the same problem,in JSON file from my trello board the actions are limited to just 1000
To have all the records, the solution is to iterate/repeat the request until receive an empty answer.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You use actions_limit when you're requesting actions as part of another resource (e.g. GET boards/BOARD_ID?actions=all&actions_limit=1000), and limit when you're requesting actions directly (e.g. GET boards/BOARD_ID/actions?limit=1000).
If you're just interested in the actions, go for the direct request and specify limit. Once you get your response, get the date of the oldest action, and issue another request setting the before parameter to that date (e.g. GET boards/BOARD_ID/actions?limit=1000&before=2018-02-10T13:05:37Z)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.