Monday

Monday logo

Monday

Configuration

Monday source connector integrates with the Monday.com GraphQL API to extract work data.

Connects to your Monday.com workspace.

It provides comprehensive access to boards, items, and team collaboration features with full relationship mapping and custom field support.

Authentication

This connector uses OAuth 2.0 authentication. You can connect through the Airweave UI or API using the OAuth flow.

Supported authentication methods:

  • OAuth Browser Flow (recommended for UI)
  • OAuth Token (for programmatic access)
  • Auth Provider (enterprise SSO)

Configuration Options

This connector does not have any additional configuration options.

Data Models

The following data models are available for this connector:

Schema for Monday Board objects.

FieldTypeDescription
board_idstrUnique identifier for the board.
board_namestrDisplay name of the board.
created_timeOptional[datetime]Board creation timestamp (if available).
updated_timeOptional[datetime]Board update timestamp.
board_kindOptional[str]The board’s kind/type: ‘public’, ‘private’, or ‘share’.
columnsList[Dict]A list of columns on the board (each column is typically a dict of fields).
descriptionOptional[str]The description of the board.
groupsList[Dict]A list of groups on the board (each group is typically a dict of fields).
ownersList[Dict]A list of users or teams who own the board.
stateOptional[str]The board’s current state: ‘active’, ‘archived’, or ‘deleted’.
workspace_idOptional[str]The unique identifier of the workspace containing this board (if any).
web_url_valueOptional[str]URL to view the board in Monday.

Schema for Monday Group objects.

FieldTypeDescription
group_idstrThe unique identifier (ID) of the group.
board_idstrID of the board this group belongs to.
titlestrTitle or display name of the group.
colorOptional[str]Group color code (e.g., ‘red’, ‘green’, ‘blue’, etc.).
archivedboolWhether this group is archived.
itemsList[Dict]List of items (rows) contained within this group.
web_url_valueOptional[str]URL to view the group in Monday.

Schema for Monday Column objects.

FieldTypeDescription
column_idstrThe unique identifier (ID) of the column.
board_idstrID of the board this column belongs to.
titlestrThe display title of the column.
column_typeOptional[str]The type of the column (e.g., ‘text’, ‘number’, ‘date’, ‘link’).
descriptionOptional[str]The description of the column.
settings_strOptional[str]Raw settings/configuration details for the column.
archivedboolWhether this column is archived or hidden.
web_url_valueOptional[str]URL to view the column in Monday.

Schema for Monday Item objects (rows on a board).

FieldTypeDescription
item_idstrThe unique identifier (ID) of the item.
item_namestrDisplay name of the item.
created_timeOptional[datetime]When the item was created.
updated_timeOptional[datetime]When the item was updated.
board_idstrID of the board this item belongs to.
group_idOptional[str]ID of the group this item is placed in.
stateOptional[str]The current state of the item: active, archived, or deleted.
column_valuesList[Dict]A list of column-value dicts that contain the data for each column.
creatorOptional[Dict]Information about the user/team who created this item.
web_url_valueOptional[str]URL to view the item in Monday.

Schema for Monday Subitem objects.

FieldTypeDescription
subitem_idstrThe unique identifier (ID) of the subitem.
subitem_namestrDisplay name of the subitem.
created_timeOptional[datetime]When the subitem was created.
updated_timeOptional[datetime]When the subitem was updated.
parent_item_idstrID of the parent item this subitem belongs to.
board_idstrID of the board that this subitem resides in.
group_idOptional[str]ID of the group this subitem is placed in.
stateOptional[str]The current state of the subitem: active, archived, or deleted.
column_valuesList[Dict]A list of column-value dicts for each column on the subitem.
creatorOptional[Dict]Information about the user/team who created this subitem.
web_url_valueOptional[str]URL to view the subitem in Monday.

Schema for Monday Update objects.

FieldTypeDescription
update_idstrThe unique identifier (ID) of the update.
update_previewstrPreview text for the update body.
created_timeOptional[datetime]When the update was created.
item_idOptional[str]ID of the item this update is referencing (could also be a board-level update).
board_idOptional[str]ID of the board, if applicable.
creator_idOptional[str]ID of the user who created this update.
bodyOptional[str]The text (body) of the update, which may include markdown or HTML formatting.
assetsList[Dict]Assets (e.g. images, attachments) associated with this update.
web_url_valueOptional[str]URL to view the update in Monday.