i want to have a list of all private repositories under an account.
Hello @Darshan G,
You can navigate to https://bitbucket.org/{account_in_question} and turn on Private filter.
Alternatively, there's REST API endpoint /2.0/repositories/{username} which returns a paginated list of all repositories of the given account. You can list only private repositories by adding BBQL query is_private=true, something like this:
https://api.bitbucket.org/2.0/repositories/account_in_question?q=is_private%3Dtrue
Hope this helps.
Cheers,
Daniil
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.