About the Monday.com category

Put topics about this connector package here.
Always check the ‘How to use the Alumio connector packages’ topic.

Extra information

System documentation:

Monday.com

Connector Package Documentation

Setting up HTTP Client Monday.com

Steps

  1. In Alumio Dashboard, go to Clients > HTTP Client. Create a new HTTP Client and select Monday.com HTTP Client as the prototype of the HTTP Client.
  2. Fill in the Base URI (Recommended : https://api.monday.com/v2).
  3. Choose the Authentication Type
  • Api Key > Fill the Api Key and Api Version (Optional)
  • Oauth2 > Fill the Client ID and Secret > Press “Grant access to Monday.com” > Authorize
  1. Save and Continue.

Subscribing to Entities from Monday.com

Steps

  1. Go to Connections → Incoming and create a new incoming configuration and select Monday.com - GraphQL Subscriber as the subscriber.
  2. Select the HTTP Method you want to subscribe to from Monday.com (Recommended POST).
  3. Add any Query Variable and Request Headers in the request parameter that you needed to subscribe to the Monday.com.
  4. You can optionally add a transformer to transform the request parameters into something you need.
  5. Select the Monday.com Client to use.

General Concept

We follow Monday.com documentation on building this connector so you can easily use the connector based on Monday.com API Reference.

Request Method
It’s the HTTP Method that you want to use, we recommend using post as default method.

Request Parameters
These are the parameters you can provide to get the needed entity based on Monday.com GraphQL API Reference. Please look at the example below on how to fill the Request Parameters field when subscribing Account.

image

Input Transformer
Any transformers set here will be executed after the Request Parameters are loaded. So, you basically can add any transformer to provide and transform the request parameters into anything you need either as path parameters and/or as query parameters of an entity.

HTTP Client
It’s the HTTP Client configuration or prototype you will use to access Monday.com GraphQL.

Publishing Entity to Monday.com

Steps

  1. Go to Connections → Outgoing, create a new outgoing configuration, and select Monday.com Publisher as the publisher.
  2. Select the Request URI you want the data to be published.
  3. Select the Request Method that you want the publisher to do with the data.
  4. Add any request data in the request parameter that you needed to subscribe to the entity.
  5. Select the HTTP Client to use.

General Concept

Like the subscriber, the publisher has similar methods on how to use it. The difference is the payload that will be submitted by the publisher originating from the data (from routes, from transformers in outgoing configuration).

Entity
We support publishing to most Monday.com GraphQL endpoints.

For endpoints that require an object as the request payload, please look at the example below. For example, we want to Query User Account

image

You can put the payload you want to send to Monday.com GraphQL into the payload property in the data. Here is an example of the Possible Response after Creation.

image

HTTP Client
It’s the HTTP Client configuration or prototype you will use to access Monday.com GraphQL.