I need to get all artifacts from Bitbucket Downloads and delete these which are older that 5 days. Unfortunately I observe that Bitbucket always returns paginated responses. Is there a way to get all results from Bitbucket REST API without pagination?
You can't disable pagination, but you can increase the number of entries in a page. Depending on how many items you are expecting you might be able to fit all of them in a single page. The maximum pagelen varies between each endpoint and you can set it using pagelen=50, for instance.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.