GET /user/permissions/workspaces
Returns an object for each workspace the caller is a member of, and their effective role - the highest level of privilege the caller has. If a user is a member of multiple groups with distinct roles, only the highest level is returned.
Permissions can be:
owner
collaborator
member
The collaborator
role is being removed from the Bitbucket Cloud API. For more information,
see the deprecation announcement.
When you move your administration from Bitbucket Cloud to admin.atlassian.com, the following fields on
workspace_membership
will no longer be present: last_accessed
and added_on
. See the
deprecation announcement.
Results may be further filtered or sorted by workspace or permission by adding the following query string parameters:
q=workspace.slug="bbworkspace1"
orq=permission="owner"
sort=workspace.slug
Note that the query parameter values need to be URL escaped so that =
would become %3D
.
Servers
- https://api.bitbucket.org/2.0
Query parameters
Name | Type | Required | Description |
---|---|---|---|
q |
String | No |
Query string to narrow down the response. See filtering and sorting for details. |
sort |
String | No |
Name of a response property to sort results. See filtering and sorting for details. |
How to start integrating
- Add HTTP Task to your workflow definition.
- Search for the API you want to integrate with and click on the name.
- This loads the API reference documentation and prepares the Http request settings.
- Click Test request to test run your request to the API and see the API's response.