Appearance
Monday.com
Manage boards, items, and updates with the Monday.com API.
| Detail | Value |
|---|---|
| Category | Productivity |
| Base URL | https://api.monday.com/v2 |
| Authentication | Bearer Token |
| Endpoints | 5 |
| Connector key | monday |
Using Monday.com in a workflow
- Go to Connections and click New Connection.
- Pick Monday.com from the marketplace.
- Enter your credentials (see Authentication above for what's expected).
- In a workflow, drop an API Call node and select this connection.
- Pick the operation you need from the Operation dropdown — the full list is below.
Available endpoints
| Endpoint | Summary |
|---|---|
POST / | Query boards via GraphQL |
POST / | Query items via GraphQL |
POST / | Create an item via GraphQL mutation |
POST / | Update an item via GraphQL mutation |
POST / | Create an update on an item |
Each endpoint is documented in full below. Use the outline on the right to jump to one.
POST /
Query boards via GraphQL
| Detail | Value |
|---|---|
| Operation ID | data.queryBoards |
| Method | POST |
| Path | / |
Parameters
No parameters.
Request Body
| Field | Type |
|---|---|
query | string |
variables | object |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Monday.com connection from the Connection dropdown.
- In the Operation dropdown, select
data.queryBoards. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Monday.com API reference.
POST /
Query items via GraphQL
| Detail | Value |
|---|---|
| Operation ID | data.queryItems |
| Method | POST |
| Path | / |
Parameters
No parameters.
Request Body
| Field | Type |
|---|---|
query | string |
variables | object |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Monday.com connection from the Connection dropdown.
- In the Operation dropdown, select
data.queryItems. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Monday.com API reference.
POST /
Create an item via GraphQL mutation
| Detail | Value |
|---|---|
| Operation ID | data.createItem |
| Method | POST |
| Path | / |
Parameters
No parameters.
Request Body
| Field | Type |
|---|---|
query | string |
variables | object |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Monday.com connection from the Connection dropdown.
- In the Operation dropdown, select
data.createItem. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Monday.com API reference.
POST /
Update an item via GraphQL mutation
| Detail | Value |
|---|---|
| Operation ID | data.updateItem |
| Method | POST |
| Path | / |
Parameters
No parameters.
Request Body
| Field | Type |
|---|---|
query | string |
variables | object |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Monday.com connection from the Connection dropdown.
- In the Operation dropdown, select
data.updateItem. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Monday.com API reference.
POST /
Create an update on an item
| Detail | Value |
|---|---|
| Operation ID | data.createUpdate |
| Method | POST |
| Path | / |
Parameters
No parameters.
Request Body
| Field | Type |
|---|---|
query | string |
variables | object |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Monday.com connection from the Connection dropdown.
- In the Operation dropdown, select
data.createUpdate. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Monday.com API reference.