Questions tagged [monday.com]

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.

50 questions
0
votes
1 answer

How do I pull a nested object out of an array with an api request returned json?

I have an API that I am calling to return a query. This query's format cannot be changed to be easier to manipulate. It has a nested array within it that I need to associate with the data from the higher levels. Specifically, I am trying to pull the…
0
votes
1 answer

How to add multiple text values in single API call in monday.com

I need to add multiple text values to my group on monday.com. How can I achieve that? The below code is working fine for single-column insertion curl -X POST \ https://api.monday.com/v2/ \ -H 'Accept: */*' \ -H 'Accept-Encoding: gzip,…
byteC0de
  • 5,153
  • 5
  • 33
  • 66
-1
votes
1 answer

My Google Script is sending the same Payload to my endpoint multiple times when I trigger it once

Final Edit: I was working in a sheet another developer had started, and it turns out they created a whole bunch of extra triggers. This being my first Gsheets app, I didnt realize what had happened till I spent more time on it and learned more…
-1
votes
1 answer

What Should be database structure to create excel sheet like view? mean should tables store in json format or create tables for cells,rows and columns

Hi Everyone, i want to create a board and all board will contain groups and each groups have tables(Rows and Columns), so should i save tables(Rows and Columns) as a json format or create separate table for rows,columns and cells etc? i watn to…
-2
votes
2 answers

Creating New Item On Monday.com With Python

How do you create new item on monday using python? Below is the code that is being used -- on a board there are multiple columns that need to be populated. How to target a specific column and provide it with a value? def CREATE_data(api_key:str) ->…
1 2 3
4