Monday Connector
  • 16 May 2024
  • 2 Minutes to read
  • Contributors

Monday Connector


Article summary

To download the app, visit: Library

Introduction

Monday is a cloud-based project and work management platform geared towards planning and managing projects and tracking day-to-day workplace activities, tasks, and duties.

Purpose

With the help of Tulip - Monday connector you can effectively keep track of your Monday projects, tasks and workspaces in a Tulip application. Furthermore, you can modify any relevant task information, or even create new cards from a Tulip app.

API Doc

The following Connector Function highlighted in this document have leveraged Monday API Docs.

Pre-Requisites

  1. Sign up for an account at Monday.com.
  2. For authorization Monday uses API tokens. To get more information how to obtain one read this documentation.

Tulip Connection Details

The following information would need to be configured on Tulip's HTTP connector.

Running On: Cloud Connector Host
Host: api.monday.com
Port: 443
TLS: Yes
Authentication: None
Header:
Authorization - Insert your API Token here.

Example Prebuilt Connector Functions

GET - Item information

Items are core objects in the monday.com platform that hold the actual data within the board. To better illustrate the platform, imagine that each board is a table and an item is a single row in that table. Now take one row, fill it with whatever information you'd like, and you now have an item!

As a developer working with monday.com, it is important to familiarize yourself with the items API so you know how to access item data. With this query you just simple retrieve all relevant infromation of an item.

GET - List Board information by ID

Querying boards will return metadata about one or a collection of boards. This method accepts various arguments and returns an array.

You can query boards directly at the root or nest it within another query. If you want to retrieve all items on a board, you can use the items_page field in your board query.

POST - Create new board

The create_board mutation allows you to create a new board via the API. You can also specify what fields to query back from the new board when you run the mutation. Please note that the user that creates the board via the API will automatically be added as the board's owner when creating a private or shareable board or if the board_owners_ids argument is missing.

POST - Create new Item

he create_item mutation allows you to create a new item via the API. You can also specify what fields to query back from the new item when you run the mutation.

POST - Update item values

The create_update mutation allows you to add an update to an item via the API. You can also specify what fields to query back from the new update when you run the mutation.

Next Steps


Was this article helpful?