I just want to integrate API which will provide me information like Give repo list which updated in last 7 days ( anything activity like commits / merge / pr happened on that repo in last 7 days)
Hey @Girish Bramhane ,
and welcome to the Community!
Based on your use case, I would suggest using Bitbucket's public API endpoint to List repositories in a workspace while sorting by the updated_on attribute.
Example request:
curl -u USERNAME:APP_PASSWORD --location 'https://api.bitbucket.org/2.0/repositories/WORKSPACE?sort=-updated_on'
This should return a list of repositories order by the most recent updated ones.
I hope that helps! Let us know in case you have any questions.
Thank you, @Girish Bramhane !
Patrik S
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.