← BitBucket + HTTP / Webhook integrations

Send any HTTP Request with HTTP / Webhook API on New Commit Comment (Instant) from BitBucket API

Pipedream makes it easy to connect APIs for HTTP / Webhook, BitBucket and 1000+ other apps remarkably fast.

Trigger workflow on
New Commit Comment (Instant) from the BitBucket API
Next, do this
Send any HTTP Request with the HTTP / Webhook API
No credit card required
Into to Pipedream
Watch us build a workflow
Watch us build a workflow
7 min
Watch now ➜

Trusted by 500,000+ developers from startups to Fortune 500 companies

Adyen logo
Brex logo
Carta logo
Checkr logo
Chameleon logo
DevRev logo
LinkedIn logo
Netflix logo
New Relic logo
OnDeck logo
Replicated logo
Scale AI logo
Teamwork logo
Warner Bros. logo
Xendit logo

Developers Pipedream

Getting Started

This integration creates a workflow with a BitBucket trigger and HTTP / Webhook action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the New Commit Comment (Instant) trigger
    1. Connect your BitBucket account
    2. Select a Workspace
    3. Select a Repository
  3. Configure the Send any HTTP Request action
    1. Connect your HTTP / Webhook account
    2. Configure HTTP Request Configuration
    3. Optional- Configure Include Response Headers
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Trigger

Description:Emit new event when a commit receives a comment. [See docs here](https://developer.atlassian.com/cloud/bitbucket/rest/api-group-repositories/#api-repositories-workspace-repo-slug-hooks-post)
Version:0.0.4
Key:bitbucket-new-commit-comment

BitBucket Overview

With the BitBucket API, you can programmatically interact with BitBucket, via
REST calls. This allows you to build apps and integrations on top of BitBucket,
customize and automate your workflows, and much more.

Here are some examples of what you can build with the BitBucket API:

  • Build integrations with 3rd party applications, such as CI/CD tools, chat
    applications, etc.
  • Create custom workflows and automate tasks
  • Build applications that interact with BitBucket (for example, a tool that
    helps you find repositories or users)
  • and much more!

Trigger Code

import common from "../common/common.mjs";
import constants from "../common/constants.mjs";
const { bitbucket } = common.props;

export default {
  ...common,
  type: "source",
  name: "New Commit Comment (Instant)",
  key: "bitbucket-new-commit-comment",
  description: "Emit new event when a commit receives a comment. [See docs here](https://developer.atlassian.com/cloud/bitbucket/rest/api-group-repositories/#api-repositories-workspace-repo-slug-hooks-post)",
  version: "0.0.4",
  props: {
    ...common.props,
    repositoryId: {
      propDefinition: [
        bitbucket,
        "repository",
        (c) => ({
          workspaceId: c.workspaceId,
        }),
      ],
    },
  },
  methods: {
    ...common.methods,
    getPath() {
      return `repositories/${this.workspaceId}/${this.repositoryId}/hooks`;
    },
    getWebhookEventTypes() {
      return [
        "repo:commit_comment_created",
      ];
    },
    async loadHistoricalData() {
      const commits = await this.bitbucket.getCommits({
        workspaceId: this.workspaceId,
        repositoryId: this.repositoryId,
        params: {
          include: this.branchName,
          page: 1,
          pagelen: constants.HISTORICAL_DATA_LENGTH,
        },
      });

      if (commits?.length) {
        let counter = 0;
        let comments = [];
        do {
          const response = await this.bitbucket.getCommitComments({
            workspaceId: this.workspaceId,
            repositoryId: this.repositoryId,
            commitId: commits[counter].hash,
            params: {
              page: 1,
              pagelen: constants.HISTORICAL_DATA_LENGTH,
            },
          });
          comments = [
            ...comments,
            ...response,
          ];
          counter++;
          if (comments.length > constants.HISTORICAL_DATA_LENGTH) {
            break;
          }
          if (counter >= commits.length - 1) {
            break;
          }
        } while (true);

        return comments.map((comment) => ({
          main: comment,
          sub: {
            id: comment.id,
            summary: `New comment created on commit ${comment.commit.hash}`,
            ts: Date.parse(comment.created_on),
          },
        }));
      }
    },
    proccessEvent(event) {
      const { comment } = event.body;

      this.$emit(comment, {
        id: comment.id,
        summary: `New comment created on commit ${comment.commit.hash}`,
        ts: Date.parse(comment.created_on),
      });
    },
  },
};

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
BitBucketbitbucketappThis component uses the BitBucket app.
WorkspaceworkspaceIdstringSelect a value from the drop down menu.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
N/Ahttp$.interface.httpThis component uses $.interface.http to generate a unique URL when the component is first instantiated. Each request to the URL will trigger the run() method of the component.
RepositoryrepositoryIdstringSelect a value from the drop down menu.

Trigger Authentication

BitBucket uses OAuth authentication. When you connect your BitBucket account, Pipedream will open a popup window where you can sign into BitBucket and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any BitBucket API.

Pipedream requests the following authorization scopes when you connect your account:

accountaccount:writeteam:writerepository:writepullrequest:writesnippet:writeissue:writeemailwikiwebhook

About BitBucket

Version control repository hosting service

Action

Description:Send an HTTP request using any method and URL. Optionally configure query string parameters, headers, and basic auth.
Version:1.1.1
Key:http-custom-request

Action Code

import http from "../../http.app.mjs";

export default {
  key: "http-custom-request",
  name: "Send any HTTP Request",
  description: "Send an HTTP request using any method and URL. Optionally configure query string parameters, headers, and basic auth.",
  type: "action",
  version: "1.1.1",
  props: {
    http,
    httpRequest: {
      propDefinition: [
        http,
        "httpRequest",
      ],
    },
    includeHeaders: {
      type: "boolean",
      label: "Include Response Headers",
      description: "Optionally export the full response headers",
      optional: true,
    },
  },
  async run({ $ }) {
    const response = await this.httpRequest.execute();

    if (this.includeHeaders) {
      $.export("headers", response.headers);
    }

    return response;
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
HTTP / WebhookhttpappThis component uses the HTTP / Webhook app.
HTTP Request ConfigurationhttpRequesthttp_request
Include Response HeadersincludeHeadersboolean

Optionally export the full response headers

Action Authentication

The HTTP / Webhook API does not require authentication.

About HTTP / Webhook

Get a unique URL where you can send HTTP or webhook requests

More Ways to Connect HTTP / Webhook + BitBucket

Creates a new issue with BitBucket API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + BitBucket
 
Try it
Creates a new issue with BitBucket API on New Requests from HTTP / Webhook API
HTTP / Webhook + BitBucket
 
Try it
Create Issue Comment with BitBucket API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + BitBucket
 
Try it
Create Issue Comment with BitBucket API on New Requests from HTTP / Webhook API
HTTP / Webhook + BitBucket
 
Try it
Create Snippet Comment with BitBucket API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + BitBucket
 
Try it
New Commit (Instant) from the BitBucket API

Emit new event when a new commit is pushed to a branch. See docs here

 
Try it
New Pull Request (Instant) from the BitBucket API

Emit new event when a new pull request is created in a repository. See docs here

 
Try it
New Branch (Instant) from the BitBucket API

Emit new event when a new branch is created. See docs here

 
Try it
New Commit Comment (Instant) from the BitBucket API

Emit new event when a commit receives a comment. See docs here

 
Try it
New Event from any Repository from the BitBucket API

Emit new event when an event occurs from any repository belonging to the user. See docs here

 
Try it
Create Issue Comment with the BitBucket API

Creates a new issue comment. See docs here

 
Try it
Create Snippet Comment with the BitBucket API

Creates a new snippet comment. See docs here

 
Try it
Creates a new issue with the BitBucket API

Creates a new issue. See docs here

 
Try it
Get File From Repository with the BitBucket API

Gets the actual file contents of a download artifact and not the artifact's metadata. See docs here

 
Try it
Get issue with the BitBucket API

Get a issue. See docs here

 
Try it