Get team's groups where the user is member, using Bitbucket API

147 Views Asked by At

How to get a list of a team's groups where the user is member? I found this endpoint but in case the caller doesn't have administrative rights it always returns empty response

1

There are 1 best solutions below

0
On

I think what are you looking for is user/privileges endpoint, from API v1.

Example:

GET https://bitbucket.org/api/1.0/user/privileges

RESPONSE:

{
    "teams": {
        "auserbb": "admin"
        "1team": "collaborator"
        "2team": "admin"
    }
}