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
list-boards: List boards
list-boards: List boards
get-board: Get a board by ID
get-board: Get a board by ID
Returns board details including columns and groups.Example request:Example response:
number
required
Board ID.
Items
list-items: List items on a board
list-items: List items on a board
get-item: Get an item by ID
get-item: Get an item by ID
Returns item details including column values.Example request:Example response:
number
required
Item ID.
create-item: Create a new item
create-item: Create a new item
update-item: Update an item's column values
update-item: Update an item's column values
delete-item: Delete an item
delete-item: Delete an item