I've been trying to pull all the action records for a single account. I've worked on this for about a day, and can't seem to pull more than 1000 actions in a single query.
Does anyone know of a way to achieve this, get all action records for a person?
It can't be done in a single call, but you can use the "since" and "before" query parameters to get them in pagination calls: https://developer.atlassian.com/cloud/trello/guides/rest-api/api-introduction/#paging ... Remember that you always the latest 1000 in the first call so next call should use the before param to get the next 1000
Can you share more insights on this one, documentation did not tell much. I am having the same issue.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It is an extra query parameter called "before" that you give the id of the 1000nd actionId you retrieved already... That way you get the next 1000
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.