Monday
Open-Source Monday Connector
Monday
The Monday connector enables easy and secure data synchronization between your application and your customers’ Monday accounts through unified data models.
Authorization
The Monday connector uses OAuth for secure authentication. When creating a connection, the required OAuth scopes are automatically configured based on your specific operations needs (e.g. genericContact::create
, genericUser::list
).
✓ Automatic token refresh handling
✓ Proactive insufficient permissions detection
View our step-by-step integration guide
Whitelabel
Supported
You can choose to provide your own set of clientId
and clientSecret
for this
connector from the Morph Cloud dashboard; allowing a fully whitelabled experience
for your end-customers.
import { Morph } from "@runmorph/cloud";
const morph = Morph({ publicKey: "pk_demo_xxxxxxxxxxxxxxx", secretKey: "sk_demo_xxxxxxxxxxxxxxx"});
// create a new connection
const connection = morph.connections({ connectorId: "monday", ownerId: "demo" });
await connection.create({ operations:[ "genericContact::list" ]});
// auhtorize the connection
const { auhtorizationUrl } = await connection.authorize();
// redirect the user to the auhtorizationUrl
Live Demo
Select a connector below to experience our seamless authentication flow and see
how easy it is to connect third-party services.
Models
Generic
The Monday connector seamlessly integrates with our unified genericContact
model, enabling you to manage Contacts with rich data including firstName
, lastName
, phoneNumber
, email
and other key details
API Reference
GET | /resources/genericContact | List and Search Monday Contacts |
GET | /resources/genericContact/:id | Retrieve a Monday Contact |
POST | /resources/genericContact | Create a Monday Contact |
PATCH | /resources/genericContact/:id | Update a Monday Contact |
DEL | /resources/genericContact/:id | Delete a Monday Contact |
Custom Fields
Supported
The Monday connector supports our Field Mapping
feature, enabling you or your customers to seamlessly map Monday Contact custom fields to the unified contact model. This allows for flexible data synchronization while maintaining data consistency across all connectors.
The Monday connector seamlessly integrates with our unified genericCompany
model, enabling you to manage Companies with rich data including name
and other key details
API Reference
GET | /resources/genericCompany | List and Search Monday Companies |
GET | /resources/genericCompany/:id | Retrieve a Monday Company |
POST | /resources/genericCompany | Create a Monday Company |
PATCH | /resources/genericCompany/:id | Update a Monday Company |
DEL | /resources/genericCompany/:id | Delete a Monday Company |
Custom Fields
Supported
The Monday connector supports our Field Mapping
feature, enabling you or your customers to seamlessly map Monday Company custom fields to the unified company model. This allows for flexible data synchronization while maintaining data consistency across all connectors.
The Monday connector seamlessly integrates with our unified genericUser
model, enabling you to manage Users with rich data including firstName
, lastName
, email
and other key details
API Reference
GET | /resources/genericUser | List and Search Monday Users |
GET | /resources/genericUser/:id | Retrieve a Monday User |
POST | /resources/genericUser | Create a Monday User |
PATCH | /resources/genericUser/:id | Update a Monday User |
DEL | /resources/genericUser/:id | Delete a Monday User |
Custom Fields
Supported
The Monday connector supports our Field Mapping
feature, enabling you or your customers to seamlessly map Monday User custom fields to the unified user model. This allows for flexible data synchronization while maintaining data consistency across all connectors.
The Monday connector seamlessly integrates with our unified genericWorkspace
model, enabling you to manage Workspaces with rich data including name
and other key details
API Reference
GET | /resources/genericWorkspace | List and Search Monday Workspaces |
GET | /resources/genericWorkspace/:id | Retrieve a Monday Workspace |
POST | /resources/genericWorkspace | Create a Monday Workspace |
PATCH | /resources/genericWorkspace/:id | Update a Monday Workspace |
DEL | /resources/genericWorkspace/:id | Delete a Monday Workspace |
Custom Fields
Supported
The Monday connector supports our Field Mapping
feature, enabling you or your customers to seamlessly map Monday Workspace custom fields to the unified workspace model. This allows for flexible data synchronization while maintaining data consistency across all connectors.
Ticketing
The Monday connector seamlessly integrates with our unified ticketProject
model, enabling you to manage Projects with rich data including name
, description
, members
and other key details
API Reference
GET | /resources/ticketProject | List and Search Monday Projects |
GET | /resources/ticketProject/:id | Retrieve a Monday Project |
POST | /resources/ticketProject | Create a Monday Project |
PATCH | /resources/ticketProject/:id | Update a Monday Project |
DEL | /resources/ticketProject/:id | Delete a Monday Project |
The Monday connector seamlessly integrates with our unified ticketIssue
model, enabling you to manage Issues with rich data including project
, title
, description
, status
, priority
and other key details
API Reference
GET | /resources/ticketIssue | List and Search Monday Issues |
GET | /resources/ticketIssue/:id | Retrieve a Monday Issue |
POST | /resources/ticketIssue | Create a Monday Issue |
PATCH | /resources/ticketIssue/:id | Update a Monday Issue |
DEL | /resources/ticketIssue/:id | Delete a Monday Issue |
The Monday connector seamlessly integrates with our unified ticketComment
model, enabling you to manage Comments with rich data including issue
, author
, content
, isInternal
and other key details
API Reference
GET | /resources/ticketComment | List and Search Monday Comments |
GET | /resources/ticketComment/:id | Retrieve a Monday Comment |
POST | /resources/ticketComment | Create a Monday Comment |
PATCH | /resources/ticketComment/:id | Update a Monday Comment |
DEL | /resources/ticketComment/:id | Delete a Monday Comment |
Custom
Supported
Can’t find the unified model you need? The Monday connector supports your own custom model.
Webhooks
The Monday connector supports real-time event subscriptions, allowing you to receive instant notifications when records are created, updated, or deleted. Below are the supported models and their corresponding triggers.
Models | Created | Updated | Deleted | API Reference |
---|---|---|---|---|
genericContact | ||||
genericCompany | ||||
genericUser | ||||
genericWorkspace | ||||
ticketProject | ||||
ticketIssue | ||||
ticketComment |
Proxy
Supported
The Monday connector supports our Proxy Request
feature, allowing you to directly
call any endpoints from Monday’s public API without needing to handle authentication.
Your customer’s token will be automatically set and refreshed as needed, enabling
quick implementation of custom connector behaviors. View API Reference.