← monday.com

New Board from monday.com API

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

Trigger workflow on
New Board from the monday.com API
Next, do this
Connect to 1000+ APIs using code and no-code building blocks
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

Trigger a workflow on New Board with monday.com API. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Configure the New Board trigger
    1. Connect your monday.com account
    2. Configure Polling interval
    3. Optional- Configure Max API Requests per Execution
  2. Add steps to connect to 1000+ APIs using code and no-code building blocks
  3. Deploy the workflow
  4. Send a test event to validate your setup
  5. Turn on the trigger

Integrations

Send Message with Discord Webhook API on New Board from monday.com API
monday.com + Discord Webhook
 
Try it
Add Multiple Rows with Google Sheets API on New Board from monday.com API
monday.com + Google Sheets
 
Try it
Get Film with SWAPI - Star Wars API on New Board from monday.com API
monday.com + SWAPI - Star Wars
 
Try it
Create Multiple Records with Airtable API on New Board from monday.com API
monday.com + Airtable
 
Try it
Chat with OpenAI (ChatGPT) API on New Board from monday.com API
monday.com + OpenAI (ChatGPT)
 
Try it

Details

This is a pre-built, source-available component from Pipedream's GitHub repo. The component is 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.

New Board on monday.com
Description:Emit new event when a new board is created in Monday.
Version:0.0.4
Key:monday-new-board

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);
  },
};

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)

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

More Ways to Use monday.com

Triggers

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
New Sub-Item (Instant) from the monday.com API

Emit new event when a sub-item is created. To create this trigger, you need to have at least one subitem previously created on your board.

 
Try it

Actions

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