Welcome to the new monday developer community
-
Recently active
No worries. I was hoping there was a way that I could mimic the “my week” tab within monday, via the API. for example a query, using any user id, and a start/from date to retrieve a list of task ids that are assigned and within the date range.
Hi developers 👋, I’m facing a strange issue with our QR code tracking App. We pushed a new minor version a couple of days ago. We moved the custom actions from a server A to a server B, with different urls. Most of the requests are now done correcly to server B. BUT, we still see some requests going to server A. We double check everything, trying to find out if we forgot to change one endpoint, but we are now 100% sure this is not the case. What could explain that? Are some users stucked to an old version, for a reason that I don’t know?
Hey, I have created a integration that fills inn information from another document. Everything works as it should, but when i refresh the site all the values in the hour columns disappear. They show the right value before i refresh. And all the other columns that gets updated keeps their values, its only the hour column that disappears. When the integration runs (before refresh). After refresh:
Greetings everyone! I’m creating this mutation in Postman to test file upload mutation { add_file_to_column (item_id: 'Madalena Vidal', column_id: 'arquivos', $file: File!) { id } } The answer with the error is this one { "errors": [ { "message": "Parse error on \\"'\\" (error) at [2, 30]", "locations": [ { "line": 2, "column": 30 } ] } ], "account_id": 6337608 } your guidance will be highly esteemed by me. Strong hug
I have created an integration by following the Slack integration example for my app. The integration correctly gets the data needed by the server but the ‘Add To Board’ remains disabled even though all the necessary fields are filled. This happens for a particular recipe, that is, ‘When an item is created,…’. However, for a different recipe, ‘When an update is created,…’ the ‘Add To Board’ button becomes active. What may be wrong? Inactive button Active button
500 Internal Server Error If you are the administrator of this website, then please read this web application’s log file and/or the web server’s log file to find out what went wrong. This is the response we get from any attempt to use the File add_file_to_column https://monday.com/developers/v2#mutations-section-files mutation. To simplify we are trying to just use postman to make this request. It would be nice if the error that it sent back wasn’t the same 500 error no matter what. Please provide some clarity on why this simple example is not working. Thanks in advance!
Hi everyone! I am trying to upload a file to an item using python and the requests library following the new guidelines described here: Announcement: Uploading files to monday.com has just become easier :), but I was not successful in doing so. If anyone could provide some insight to what I am doing wrong, I would greatly appreciate it! My code: apiUrlFiles = "https://api.monday.com/v2/file" headers = {"Authorization": apiKey, "Content-Type": "multipart/form-data"} item_id = 1091467834 column ='column' query = f'mutation ($file: File!)' \\ f'{{ add_file_to_column ' \\ f' ( item_id:{item_id}, ' \\ f'column_id:"{column}", file: $file) ' \\ f'{{ id }} }}' with open('t.txt', 'rb') as f: data = {'query': query, 'map': {"t.txt": 'variables.file'}} file = {'t.txt': f} r = requests.post(url=apiUrlFiles, json=data, headers=header
Hello Monday.com, I need your help! I’m sending two post req from java first req is creating ticket second req tries to upload file(screenshot) on created_item but with no success Below is my second req code and i also added first and second requested query datas and responses from the server. public static String updateDefect( String itemID, File file) { HttpURLConnection connection = null; String targetURL = “https://levank707.monday.com/v2”; String query3 = “{"query":"mutation{add_file_to_column(file: “+file+”, " + “item_id:”+itemID+”, column_id: "files") {id}}"; try { //Create connection URL url = new URL(targetURL); connection = (HttpURLConnection) url.openConnection(); connection.setRequestMethod("POST"); connection.setRequestProperty("Content-Type", "application/json"); connection.setRequestProperty("Content-Type", "multipart/form-data"); connection.setRequestProperty("Content-Length", Integer.toString(query3.getByt
I deployed an update for my app and released a new version. On trying to install it on another user’s account I get this error. The app version seems to be deployed fine and I see no errors on the admin side. Is there some config step I missed?
Hi there, I’m using Postman to build out all of our API calls before coding them. I need to change multiple column values on an existing item with a single API call. However, I’m receiving a Parse error when sending the request using JSON Here’s what the request body looks like, with board_id and item_id redacted for security: { "query": "mutation {change_multiple_column_values (board_id: 12345, item_id: 67890, column_values: {\\"text03\\": \\"Pablo\\", \\"text22\\": \\"Miser\\" }" } Here’s a screenshot: What should I try next? Thanks, Paul
Hi everyone, I developed an app for the current monday app challenge, everything worked fine until I publish the app to the server and after debugging I realized monday server can’t connect to my app server webhook url(the app itself is working but not the webhook), it’s working fine locally with localtunnel, I checked everything, even nginx logs, webhook challenge request is not even reaching my webserver and my app relies on the webhook to sync the data webhook url is: https://metalogic.nace.io/monday/webhook
Hi, I create items in Monday using the create_item GraphQL mutation but I can’t find a way to assign multiple users to the item. Is that possible using the API?
Hi there! 👋 Today, we issued a new fetaure of our QR code App. You can now manage your inventory with QR codes. When you create an item, a associated QR code is created. You can place it on the corresponding racking. Each time a worker scan the qr code, he can update the stock level of the item, without any app, just with a simple virtual keyboard. You can activate geofencing to protect yourself from outside. Read the doc
Greetings everyone! Well folks I have an array in PHP $ arr = [“a”, “b”, “c”]; And I wanted to know which type of column is most suitable for placing the array values in a monday column inside a board Thank you very much for reading and if possible answer me = D
Hi, in my integration I want to replace the item fields that can be selected in a message of a recipe. On my board I have one date column called Date and one dropdown column called Effort. When I select these in a recipe’s message, I get {item’s Date} and {item’s Effort} as text. But my custom action receives this as {pulse.date4} and {pulse.dropdown} in the provided message (the pulse renaming is not the problem). To get the approriate values from the board I query the item’s column_values and find that the title is exactly that what is shown as selected fields. But it is hard to correlate this in my custom action. It seems that something like the type of the column is given, but what happens if I use more than one column with the same type on the board (I didn’t check that yet)? Also I am wondering about the 4 in the date field. As a side note, it seems that the representation of the autopopulated fields in a recipe’s message have change since yesterday: before it was like {item.pers
Hi Monday community, I am looking for a table component in the Monday component library similar to the one from the documentation from this link (see image below) Where can I find something to create a board view with this table component? Is there a line chart component that Monday can offer (see image)? If not, I would like to ask if anyone has suggestions on UI Kit libraries to use for creating Monday board views. I’ve used Material UI before. Thank you for your time!
Why isn’t it possible to adjust the item name from the API. It seems like a very basic feature that is missing.
I’ve create a new integration app, which works fine using a local tunnel to my dev machine. When the functionality is ready, I deployed the functionality to Google Firebase functions and updated the Monday.com app URL to invoke, so it points to the firebase function instead of the local tunnel. After changing the URL, nothing happens any more. On the firebase-side, I don’t even see an invocation. When testing the firebase URL (by POSTing to it), I get a decent error (that the Monday.com JWT token is invalid - I put a dummy value in the request body, so that’s expected). But from Monday.com, it’s not even invoked. Questions: Is there a log viewer to see if an app gets invoked, and to see possible errors? Could the cause be that the URL is too long? The URL is https://europe-west1-xxxxx-xxxxxx-xx-xxx-calendar.cloudfunctions.net/SyncToGoogle (the actual URL has been changed to use 'x’s in this post)
Hi, I am trying to build a custom integration recipe where if I update a column’s value in a board where I am going to apply an integration can also change the value in other board I want to(provided in recipe sentence). The problem is that I want to make it a generic one so that we can choose the column of the other board from our own choice(just like we give it in a recipe sentence). And in the later column we are getting the list of columns of the board where we are applying the automation not the one we’ve chosen from recipe sentence. For that , we should compelled the user to chose the board first so that it can load all the relevant columns. Is there a way to achieve this? A quick help would be appreciated…!!
Hi, I am developing an app with integration feature. And i would like to access Mirror column via recipe. But i am unable to access it. If select “linkage Column” or “Column” when creating a custom action and then go to recipe and add the recipe to the board. When though board1 is Connected to another board2 and it has 3 mirror column. I am the owner of both these boards. But when i try to add recipe the column selection dropdown do no show the mirror columns. It shows all the other columns except mirror column. What could be the issue? Can anyone guide me on this.?
Hi, how can I create a GraphQL Query that will return a single Group by its title rather than its id? I can use the playground to get all Groups and I can also get a single group via its id, but id’s are randomly named and so I want to get a group by its title which I create and thus can control. I though I’d be able to do something like this … // fails { boards(ids: 000000000) { groups(title: “nice_title”) { id title } } } but if I’m reading the documentation correctly (https://monday.com/developers/v2#queries-section-groups) then the only thing I can do is this … // works { boards(ids: 000000000) { groups (ids: “some_random_title”) { id title } } } Or get all groups and use code to iterate the groups to find the one I want … // works - gets all groups for my board { boards(ids: 000000000) { groups { id title } } } I would prefer not to do this for performance reasons. I’m certainly no GraphQL expert so any help is appreciate, Thanks!!!
I have developed a custom integration (with node JS ). my integration calls a custom action when a column value is changed by the user. I want to display a message to user when the custom action success (or red message if my custom action was failed.) Please note, I don’t want to create notification in the notifications area!!! I want to show something like this (without the undo button): Is it possible?
Hi monday.com community! We are happy to announce a new integration between monday.com and Bitbucket. This integration for Bitbucket® allows you to connect Bitbucket issues (not Jira issues) and monday.com items. Improve collaboration between your business and developer teams by working more efficient! As of now, the app includes the following recipes: When an item is created in monday.com, create an issue in this Bitbucket repository from this Bitbucket workspace When a status changes to something, create an issue in this Bitbucket repository from this Bitbucket workspace When an issue is created in this Bitbucket repository from this Bitbucket workspace, create an item and sync future changes from Bitbucket When a commit of this Bitbucket repository from this Bitbucket workspace is pushed to this branch, create an item When a commit of this Bitbucket repository from this Bitbucket workspace is pushed to this branch, create an update in this item Read our documentation or install
Hi All, A customer of ours wants to have a script that removes an employee who leaves the company from all his accounts like email, and other software tools. is there a way to remove a user from a monday.com account using the API? Thanks in advance. Yossi
Hi, I get the “Recipe Creation failed” when trying to create the following recipe: If remove the part and {column,columnRejected} to {value, valueRejected} if Not recipe is created successfully. Are there any limitations for recipe text length?
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.