Skip to main content
The Monday.com connector lets your workflows manage boards, items, updates, and workspaces through the Monday.com GraphQL API.
For the full API reference, see the Monday.com API documentation.

Connection setup

1

Get your API token

In Monday.com, click your avatar in the bottom-left corner and go to Developers > My Access Tokens. Copy your personal API token (or create a new one for your integration).
2

Add the connection in Spojit

Go to Connections in Spojit, click Add Connection, select Monday.com, and enter:
  • API Token: Your Monday.com API token
Monday.com uses a GraphQL API. All tools translate to GraphQL queries and mutations under the hood.

Tools

Boards

number
default:"25"
Number of boards to return.
number
default:"1"
Page number for pagination.
number
Filter by workspace ID.
string
Filter by board type: public, private, or share.
Example request:
Example response:
Returns board details including columns and groups.
number
required
Board ID.
Example request:
Example response:

Items

number
required
Board ID to list items from.
number
default:"25"
Number of items to return.
number
default:"1"
Page number for pagination.
string
Filter by group ID within the board.
Example request:
Example response:
Returns item details including column values.
number
required
Item ID.
Example request:
Example response:
number
required
Board ID to create the item in.
string
required
Item name.
string
Group ID within the board. Uses the first group if not specified.
object
Column values as a JSON object. Keys are column IDs, values follow Monday.com column value format.
Example request:
Example response:
number
required
Board ID the item belongs to.
number
required
Item ID.
object
required
Column values to update. Keys are column IDs.
Example request:
Example response:
number
required
Item ID.
Example request:
Example response:

Updates

number
required
Item ID to post the update on.
string
required
Update body text (HTML supported).
Example request:
Example response:

Workspaces

number
default:"25"
Number of workspaces to return.
number
default:"1"
Page number for pagination.
Example response:

Advanced

Run any GraphQL query or mutation against the Monday.com API.
string
required
GraphQL query or mutation string.
object
GraphQL variables.
Example request:
Example response: