Hello
I am trying to use the bitbucket REST API to retrieve pipeline builds after a given date
Failed attempts...
https://api.bitbucket.org/2.0/repositories/myworkspace/myproject/pipelines/?created_on>2022-01-01T00:00:00Z'
https://api.bitbucket.org/2.0/repositories/myworkspace/myproject/pipelines/?q=created_on>2022-01-01T00:00:00Z'
https://api.bitbucket.org/2.0/repositories/myworkspace/myproject/pipelines/?created_on>"2022-01-01T00:00:00Z"'
https://api.bitbucket.org/2.0/repositories/myworkspace/myproject/pipelines/?q=created_on>"2022-01-01T00:00:00Z"'
...
Whatever I have tried, the results always start from the first pipeline run ever for the given project
Could someone point me in the right direction?
Tx!
Peter
Hi Peter,
I'm afraid that the pipelines API endpoint doesn't support filtering at the moment.
We have a feature request about this in our issue tracker:
If you'd be interested in that, I would suggest adding your vote to the feature request (by selecting the Vote for this issue link) as the number of votes helps the development team and product managers better understand the demand for new features. You are more than welcome to leave any feedback, and you can also add yourself as a watcher (by selecting the Start watching this issue link) if you'd like to get notified via email on updates.
Implementation of new features is done as per our policy here and any updates will be posted in the feature request.
Until this is implemented, you could retrieve all pipelines via API and then use another tool that can filter JSON data, like jq, in order to filter the results.
Kind regards,
Theodora
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.