Skip to content

darrenmoura/budibase-datasource-bitbucket-cloud-repositories

Repository files navigation

Budibase Datasource - Bitbucket Cloud Repositories

Manage Bitbucket Cloud repositories. Uses Bitbucket REST API V2.0, you can find the docs for it here.

Auth

Uses Basic Auth with an App Password. For more info on setting this up, check here. Make sure the App Password you use for this integration has the requisite Pull Request permissions.

Pagination, sorting and filtering

The Bitbucket REST API has a consistent API for filtering & sorting and for pagination on requests that return a list of values.

Trying it out

Bitbucket is free, so you can easily try out the queries in this datasource.

Create and Update operations

Below is an example config to create a new repo (POST/PUT request body):

{
	"scm": "git",
	"project": {
		"key": "BUDI"
	}
}