Welcome to the new monday developer community
-
Recently active
axios({ url: 'https://api.monday.com/v2',headers: { Authorization: 'Bearer ' + 'token' }, method: 'post', data: { query: `mutation { change_column_value (board_id: ${id}, item_id: ${pulseid}, column_id: "time1", value: "\\"${points}\\"") { id } }` } }).then(function(result) { console.log(result); } ).catch(function (error) { console.log(error) }); Also i have tried this one as well. query: `mutation change_column_value ($textValue: Integer!){ change_column_value( board_id: ${id}, item_id: ${pulseidusedhere}, column_id: ${group}, value:$textValue ){ id } } query variables: { textValue: ${JSON.stringify(time)}, } `,
Hello, During the integration of files in monday, I’ve stumbled upon the mystery of downloading files via the API or, in general a GET request. While getting the x.monday/protected_static/xxx/resources and so on is retrievable from the row and column, I’ve found no possibility to actually GET the file in any shape. I will only get the 401 with the actual API key. Is there any other way one is able to access the file? Sebastian H.
I am updating Monday.com from our software that we reproduce. I can’t use V2 yet, so I have a partial implementation with API v1. The only one that doesn’t work is status columns. Any help or pointers is greatly appreciated. Here is my redacted PUT url: https://api.monday.com:443/v1/boards/[boardid]/columns/[columnid]/color.json?api_key=[apikey]&pulse_id=[pulseid]&color_index=0 I get a response of 500 when I use it.
Hello I try to update a column value for an item but I have a strange error. My column type is numeric, here the code I use (python) : import requests token = "xxx" headers = { 'Content-Type': 'application/json', 'Accept': 'application/json', 'Authorization': token } url = "https://api.monday.com/v2/" mutation_query = """ mutation { change_column_value( board_id: 123, item_id: 123, column_id: "numbers53", value:"\\"3\\"") { id } } """ response = requests.post( url, json={"query": mutation_query}, headers=headers) print(response.status_code) print(response.json()) And here the response I get : {'errors': [{'message': 'Parse error on "3" (INT) at [7, 16]', 'locations': [{'line': 7, 'column': 16}]}], 'account_id': xxx} Is the value I send to the API correctly formatted ?
My apologies for the double-post. Am I doing something incorrect with this email field? The following mutation goes through just fine but the email field is not updated: mutation { create_item(board_id: #######, group_id: "topics", item_name: "Bubba Gump", column_values: "{\\"email\\":\\"itsmyemail@mailserver.com\\",\\"text\\":\\"my email\\", \\"phone8\\": \\"8888888888\\", \\"status\\": {\\"label\\": \\"New Inquiry\\"}, \\"long_text\\": {\\"text\\": \\"All kids of shrimp!\\"} }") { id } } Here are the details for that column: Should I be using the id “text4” in place of something else? { “id”: “text4”, “title”: “Email”, “type”: “email” }
Hi Folks, I have been tasked to extract data from 3 keys boards for MGMT reporting, I’m trying to extract all rows and columns from the board I’m using Python Request. I just started writing the script and it seem like this will be a very complex task. Does anyone have an previous code they can share ? or is there an easier way to extract the data? I also don’t mind the option of exported the board into excel or csv
Where can I find a simple authentication and query example for javascript? I can’t seem to find an example anywhere. Something as simple as returning all of your boards…
I found this: https://design.monday.com/ It’s a very helpful reference, but before I go create all the stylesheets from scratch, are there any CSS resources (or the like) that we could use as a starting point?
Hi 👋 I’m trying to use a column value in a receipt instead of column id. In the receipt, {site name,siteNameId} will return the id of the column selected by the user. How can I get the value of the column selected by the user instead of having the column ID? Is there a real documentation somewhere with all this stuff?
Please I’m having issues creating a monday app successfully. I was able to compile it but was saying compiled with warnings. Any help on this will be appreciated. Many thanks
Hi, We have some ideas for the app but we need clarification about plug-in points. Right now you can add a custom board view as a part of the app. Are you willing to add a similar location but on the Workspace level? We are interested in the custom view but not related to the items.
Hi Team, I am trying to build an app whch may need to work on background and notify users in case there’s anything needs attention of user. Is this kind of use case supported when user is not active on view of my app .
I have the following code for sending an API request from my Google App Script: function sendApiRequest(query) { var sendQuery = JSON.stringify(query); var options = { 'method' : 'post', 'headers' : { 'Content-Type': 'application/json', 'Authorization' : key }, 'payload' : sendQuery }; var response = UrlFetchApp.fetch(apiUrl, options); Logger.log(response); return parseResponse(response); } When I’m trying to send a mutation query in order to update an item, I’m using the following query: mutation { change_multiple_column_values (board_id: 20178755, item_id: 200819371, column_values: “{"status": {"index": 1}}”) { id } } The problem is that in the column_values: "{\\"status\\": {\\"index\\": 1}}") section I need to have double quotes wrapping my JSON.Stringfy values, which I’m just unable to make it happen. The JSON Stringfy process either add escape or remove the quotes. Could some please help?
Hi, I;m failing to get progress columns value. Here is what I did. Request Query: query { boards(ids:[5xxxxxxxxx], limit:1) { items { name group { id } column_values { id value text } } } } Response Data: … { “id”: “progress”, “value”: null, “text”: “” } …
What’s the best practice for securing custom views? The documentation obviously shows how to setup an application accessible via an ngrok URL, but I don’t see any reference to best practices for securing views. https://monday.com/developers/apps/quickstart-view Do we add authentication in the view? Pass data into the iFrame? Something else? Sorry if I am just missing something, but didn’t see anything links in the documentation for View security.
Hey everyone, I am new to Monday app. I want to build an application using monday.com could u please guide me in it?
I’m interested in doing a sweep over all data items of interest in a periodic manner. In order to be efficient, I only want to scan items that were created / updated since my last run. I’m not seen this possible on most (maybe even all) types of GraphQL queries. Any tips before I basically replicate some of the data on my side and manage this? (which will be very silly since I’ll need to count how many results I have and offset my request with a page number, far from ideal).
Hi There, I’m trying to implement the example in the quickstart guide to learn how to build a custom integration: https://monday.com/developers/apps/quickstart-integration I followed every step. At the end, I’m able to add this integration to a board. The field selection is ok. But the endpoint is never called when the text is modified. If I make a postman request to the ngrok server, I can see it, it works well. I tried with another endpoint from one of our servers, but the result is the same: the enpoint is never called. I tried with the “item added” trigger => same problem. What could I miss?
Hi, sorry with this basics questions, but i need help. Im dealing with creating the Monday.com suggested integration to detect a text change in one text column and put his content in another text column. Im having two questions: I was able to create it following all the steps, but the created recipe doesnt allow me to select and change the target text column (i have followed all the previous steps). What s this all about? Why i have to run the app from a local server? Again, i was able to to this but like a robot, not understanding anything. The steps mentioned an number 2, they are needed to do on every app i build??? (probably i will not be able to built anything but i ll try 😃 😃 :smiley) I’m starting from far behind give me a chance please thanks
Hi community! let’s see if you can solve my problems. I’m trying to create a pulse with post http from java and i recieve that error message: “No query string was present” I’m sending a String : String data = “‘mutation’ { ‘create_item’(board_id: xxx, group_id: ‘topics’, item_name: ‘Api created’) {id}}”; And content type application/graphql If anyone can help me please! Thank you!
Hi - I am kinda new to GraphQL and I am trying to write a code that will update a column in my board with data from a .csv file saved to my drive. I tried running the code but get this error message: TypeError: not all arguments converted during string formatting Code: for index, row in dataframe.iterrows(): Availability = str(row[‘Availability’]).replace(“,”, “”) item_id = str(row[‘ID’]) mutation = ‘’’ mutation { change_column_value(board_id: 309020018, item_id: 309020024, column_id: “Availability”, value: “"500"”) { id } } ‘’’ % (item_id) print(mutation) result = client.execute(mutation) print (result) I would love any feedback that can be provided! Thanks!
Hello there, Question are you able to edit generating the ID Number. Example ID number generated by monday.com 623677836 9 Digits generated. But I want to decrease the digit number to 5 like 62367. Or even maybe be able to include some letters like YX623. Is that possible?
Hello, Is it possible to use the V2 API to make queries based on a text search? For instance, fetching all the Items that have “mytext” in their name. I would like to be able to do that for several entities, namely Items, Users, Boards, Groups… Is such a thing possible and if yes, how? Thanks
Hi, I am using Monday API v2 service to develop an integration service.I am struck on how to develop following two triggers. 1.Trigger when item moved from a group. 2.Trigger when item updated. Please suggest a way if possible to implement these through the API v2.I could not found any solution in the documentation.
Hello, We are currently using API v2 to update certain statuses on one of our boards. We face a certain issue where one or more of the columns are updated, and reflected for once but then revert back to previous value on the board. The change from the previous value to updated value is present in Activity Log, however, this unexpected revert back to previous value is not present in Activity Log. In our case this happens randomly, and also we only find it to happen when there are two or more calls simultaneously to monday.com API v2 to update an item’s different columns. If someone can help resolve/understand this behavior, it would be great. Thanks!
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.