Use this tag for questions about the monday.com collaborative work management platform's application programming interface, which supports read and write (mutating) access to boards, items, etc.
Questions tagged [monday.com]
50 questions
3
votes
2 answers
How do I normalize deeply nested JSON results that has a lot of different collections?
What I have is a result from monday.com via a graphql query. The data comes back with a lot of different collections such as a dictionary of a list of dictionaries... eg.
{
"data": {
"boards": [
{
"name": "board name",
…

Kwaku RBG
- 45
- 1
- 7
3
votes
2 answers
How do I create a new board item in Monday.com w/ column values? Code is not working
I'm using the Monday.com API in a React bootstrapped app.
I can create a new board item successfully with an item name...
monday.api(
`mutation {
create_item (
board_id: ${myBoardId},
group_id: "new_group",
…

sbaden
- 555
- 3
- 16
- 30
3
votes
1 answer
Reference Monday.com item ID in Github commit message
When I reference an Item ID from the Monday App in my git commit it should show up because I have following integration enabled: When a pulse ID is mentioned in a commit in this repository, create an update to the relevant pulse.
I can't get it to…

Dries Hooghe
- 123
- 9
2
votes
1 answer
Problem adding files with ColdFusion via Monday.com API
I’ve been playing with the Monday API and have made a lot of progress towards getting it ready to be available in our system and a couple of other tools we use, however, I’ve hit a bit of a snag when it comes to adding files. I’ve been able to do…

jkw4703
- 352
- 3
- 17
2
votes
3 answers
Using pandas to flatten a dict
[{'name': 'Test Item1',
'column_values': [{'title': 'col2', 'text': 'Oladimeji Olaolorun'},
{'title': 'col3', 'text': 'Working on it'},
{'title': 'col4', 'text': '2019-09-17'},
{'title': 'col5', 'text': '1'}],
'group': {'title':…

Oladimeji Olaolorun
- 78
- 4
1
vote
3 answers
How to query all boards with a specific workspace in Monday Api?
I want to list all boards from a specific workspace?..How to correctly write such query
I am doing this way
query {
boards (workspace_id :1405052) {
name
}
}
Getting this error
"errors": [
{
"message": "Field 'boards' doesn't accept argument…
user18541276
1
vote
1 answer
How to convert Graphql query to a python dictionary?
I have this query which I got from a monday.com website. I am trying to get the column values for the respected board and trying to put those values into a python dictionary so that I can iterate over with some conditions later on and update the…

Aman Mishra
- 11
- 1
1
vote
1 answer
Compose GraphQL for monday.com
I am trying to build a framework around monday.com API. Following statement works:
var query = @"{""query"": ""mutation {create_item(board_id: 1111, group_id:\""new_group\"", item_name: \""adding works\"", column_values: \"" {\\\""long_text\\\"": {…

Thomas Segato
- 4,567
- 11
- 55
- 104
1
vote
2 answers
Zapier to Monday.com, is there a way to retrieve or save the numerical monday pulse ID to reference later?
So I have an asknicely.com board that we get customer survey responses from.
I have a Monday.com board where I track these responses and our follow ups for management.
I am using a zapier zap, that filters the responses, that works. BUT it…

spencemw
- 131
- 1
- 3
- 10
1
vote
1 answer
Mutating data through API
I am using Zapier to create a Monday.com task every time a new lead is created in Copper (my CRM). The problem is that Zapier only allows the information to stored in the task name on Monday.com. I have created a webhook that is supposed to parse…

klaurtar
- 233
- 3
- 23
1
vote
1 answer
Trying to get specific row values from Monday.com using GraphQL
Trying to use this API to get column values for my board in GraphQL, I have a column named "Email" with the persons email address but I can't seem to query it - here is my query thus far.
query {
boards (ids: 341236641) {
items () {
id
…

k9b
- 1,457
- 4
- 24
- 54
0
votes
0 answers
API Monday x Power BI - Get all data of the boards
I want to directly link my Monday boards to Power BI for live data.
Need to directly connect multiple boards at the same time to Power BI
Get all the information from each boards
History date stamp of when the stage/task changes
The current query…
0
votes
0 answers
What is the Pulse scheme within Monday.coy? I've tried google, monday api docs, and the monday community all to no avail
I am updating a synchronization with Monday.com.
I'm looking for the scheme to the pulse object, especially in a "mustache" context, what are the elements of pulse?
I've tried searching Monday's API docs and community

Ram
- 327
- 2
- 20
0
votes
0 answers
Integrating Monday.com Boards with SQL Database: Connection Troubleshooting
I'm trying to establish a connection between my Monday.com account and an SQL database. The goal is to sync data from Monday.com boards to the SQL database for further analysis. However, I'm facing some challenges during the setup process. Could…

fjhkjh
- 1
0
votes
0 answers
Can I parse data from email used to create an item into separate columns? Monday.com
Context: Im trying to use NFC tags and android scanners to create monday.com entries, Parts order requests specifically. I cant find a way to send JSON data or POST using a NFC card to use the API, but I can send emails.
Question
On Monday.com there…

hderic
- 3
- 3