You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I want to get the data regarding all the pull requests made after a particular date. I have the api for that. I'm able to fetch data by giving state and limit. But I need to fetch only the pull requests made on or after a particular date.
This is the way i tried to get for the date '2019-08-03' :
Sorry I'm confused because you labeled your question with bitbucket-cloud whereas the API you referred to looks more like Bitbucket Server's.
I'm not sure if filtering by creation date is possible with Bitbucket Server. It can be done with Bitbucket Cloud though. Please clarify which product you're using.
Cheers,
Daniil
Hi @Daniil Penkin ,
I'm using BitBucket server only. I need to filter the pull requests made on or after a particular date from the rest api.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Govind Haridas,
I double checked with Bitbucket Server team: unfortunately, pull requests REST API doesn't support filtering PRs by creation date.
The only date-related parameter is order, but it works with last update date, not creation date.
Cheers,
Daniil
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Daniil,
Can you tell me the parameter name through which I can get pull requests created after a certain date in Bitbucket Cloud? Requesting you to please reply to this query on urgent basis as we are stuck in our work.
Regards,
Felis Paul
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @felis paul ,
You can use BBQL query for that (see Filtering), something like this:
https://api.bitbucket.org/2.0/repositories/atlassian/atlaskit-mk-2/pullrequests?q=created_on%3C2017-08-25T00:00:00.000Z
Cheers,
Daniil
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.