← monday.com + HTTP / Webhook integrations

Send any HTTP Request with HTTP / Webhook API on New Board from monday.com API

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

Trigger workflow on
New Board from the monday.com 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 monday.com 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 Board trigger
    1. Connect your monday.com account
    2. Configure Polling interval
    3. Optional- Configure Max API Requests per Execution
  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 new board is created in Monday.
Version:0.0.4
Key:monday-new-board

monday.com Overview

With the monday.com API you can build a variety of applications and
integrations. Some examples include:

  • A monitoring and analytics tool to track the performance of your monday.com
    account
  • A mobile app to access your monday.com account on the go
  • A tool to help you migrate your data from another platform onto monday.com
  • An integration with your existing workflow or CRM system

Trigger Code

import common from "../common/common-polling.mjs";

export default {
  ...common,
  key: "monday-new-board",
  name: "New Board",
  description: "Emit new event when a new board is created in Monday.",
  type: "source",
  version: "0.0.4",
  dedupe: "unique",
  props: {
    ...common.props,
    maxRequests: {
      type: "integer",
      min: 1,
      label: "Max API Requests per Execution",
      description: "The maximum number of API requests to make per execution (e.g., multiple requests are required to retrieve paginated results)",
      optional: true,
      default: 1,
    },
  },
  methods: {
    ...common.methods,
    generateMeta(board) {
      return {
        id: board.id,
        summary: board.name,
        ts: Date.now(),
      };
    },
  },
  async run() {
    const lastId = this._getLastId();

    let maxId = lastId;
    let done = false;
    let page = 1;
    do {
      const { boards } = (await this.monday.listBoards({
        page,
      })).data;
      for (const board of boards) {
        if (+board.id <= lastId) {
          done = true;
          break;
        }
        if (+board.id > maxId) {
          maxId = +board.id;
        }
        const boardData = await this.monday.getBoard({
          id: +board.id,
        });
        this.emitEvent(boardData);
      }
      if (boards.length === 0) {
        done = true;
      }
      page++;
    } while (!done && page <= this.maxRequests);

    this._setLastId(maxId);
  },
};

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
monday.commondayappThis component uses the monday.com app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
Polling intervaltimer$.interface.timer

Pipedream will poll the Monday API on this schedule

Max API Requests per ExecutionmaxRequestsinteger

The maximum number of API requests to make per execution (e.g., multiple requests are required to retrieve paginated results)

Trigger Authentication

monday.com uses API keys for authentication. When you connect your monday.com account, Pipedream securely stores the keys so you can easily authenticate to monday.com APIs in both code and no-code steps.

Add your monday.com API token below

About monday.com

Platform to run processes, projects and workflows in one digital workspace

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 + monday.com

Create Board with monday.com API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + monday.com
 
Try it
Create Board with monday.com API on New Requests from HTTP / Webhook API
HTTP / Webhook + monday.com
 
Try it
Create Group with monday.com API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + monday.com
 
Try it
Create Group with monday.com API on New Requests from HTTP / Webhook API
HTTP / Webhook + monday.com
 
Try it
Create Item with monday.com API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + monday.com
 
Try it
New Board from the monday.com API

Emit new event when a new board is created in Monday.

 
Try it
New Column Value Updated (Instant) from the monday.com API

Emit new event when a column value is updated on a board in Monday. For changes to Name, use the Name Updated Trigger.

 
Try it
New Item (Instant) from the monday.com API

Emit new event when a new item is added to a board in Monday.

 
Try it
New Name Updated (Instant) from the monday.com API

Emit new event when an item's Name is updated on a board in Monday.

 
Try it
New Specific Column Updated (Instant) from the monday.com API

Emit new event when a value in the specified column is updated on a board in Monday. For changes to Name, use the Name Updated Trigger.

 
Try it
Create an Update with the monday.com API

Creates a new update. See the docs here

 
Try it
Create Board with the monday.com API

Creates a new board. See the docs here

 
Try it
Create Column with the monday.com API

Creates a column. See the docs here

 
Try it
Create Group with the monday.com API

Creates a new group in a specific board. See the docs here

 
Try it
Create Item with the monday.com API

Creates an item. See the docs here

 
Try it