Welcome to the new monday developer community
-
Recently active
Hey, I’m trying to get all the items at a certain date at a certain time. The following query works for date: query {items_by_multiple_column_values (board_id: 708469745, column_id: \\"date\\", column_values: \\"2022-01-03\\") {name column_values{title text} group{title}}} But I’m also trying to do this with time: query {items_by_multiple_column_values (board_id: 708469745, column_id: \\"date\\", column_values: \\"2022-01-03 13:00\\") {name column_values{title text} group{title}}} This doesn’t seem to work, but when I just get everything date and time is formatted like this: Does anyone know how I would get items by date and time? Thanks a lot!
I was looking into making a copy action that dupes and moves the item in one action. I have found that dupe mutation which i have working but I cannot find in any documentation for the mutation that is being used to move the item to a different board. Is this a mutation and I am just missing it I have tried to use the move item to group mutation but that only moves it within the current group. Thank you for any assistance you can provide
Hey I am trying to get file details for the Monday account using https://api.developer.monday.com/docs/files-queries but I am not getting any files nor I am getting any error I am trying to query files using items with the query as query { boards (ids:<id>) { items (limit:100) { assets { id url name } } } } but in return I am getting empty lists for each item but we have files uploaded for some items (that I can see in the app) still not getting it from the API call. Thank you.
Unable to query for boards in a paginated setup. The documentation says Where as the API call is returning with a message: Field ‘boards’ doesn’t accept argument ‘pageInt’
We have some APIs in place for a while now, connected to our own CRM. Everything has stopped working today and cannot update Monday.com from our server. Nothing has changed our side, server can see call externally and API token still the same. However, today all attempts are coming back with 500 errors and cannot see why?
I am new here and using your API v2 to try get a list of all of the columns and their values. Everything works great but I cannot seem to ever get the very first column and have no idea why. I am using this as my query: { boards(ids: xxxxxxx) { owner { id } items() { column_values { id, text, title } } } } The result is this However in my table I have this: The red arrow is what is missing in the response, the green arrow is what is first in the response. d How do I get it to show the values of the very first column? This makes no sense that it doesnt. Thanks
Hi, I am creating an App with a specific boards, how should I do it? I mean, I wants the boards to be created automatically when the app is installed in the account, I’ll be happy to hear on the best practices here. Thanks Roi
I’d like to select the default value or empty value in the dropdown list from the api query. Is it that possible, for example - in certain condition of my board I want to clear the dropdown selection to its empty value or default. ? Any suggestions how to do that?
Hi, I was wondering if it’s possible to get items from the API sorted on publish date. I can sort on newest_first, but if someone makes an item for next year then that item will be displayed instead of an item that has a publish date tomorrow. This is because newest_first sorts on creation date. Thanks a lot!
Hi Community, I am receiveing 2 payload from monday.com as follow, anyone knows that it is a normal behavior from monday. Note: the first payload does not have the pulseId { "payload": { "blockKind": "action", "blockMetadata": null, "inboundFieldValues": { "externalBoardId": 2025645724, "targetBoardId": 2026078504, "columnValue": { "changed_at": "2022-01-01T01:04:12.839Z", "column_settings": { "allowCreateReflectionColumn": false, "boardIds": [ 2025645724 ] } } }, "inputFields": { "externalBoardId": 2025645724, "targetBoardId": 2026078504, "columnValue": { "changed_at": "2022-01-01T01:04:12.839Z", "column_settings": { "allowCreateReflectionColumn": false, "boardIds": [ 2025645724 ] } } }, "recipeId": 30026767, "forceNoCharge": false, "integrationId": 76043009 } } { "p
Hi all, I am just starting to explore development of Monday apps and found a problem. Following the steps described in https://apps.developer.monday.com/docs/quickstart-view, I have created an “item view” feature. In step “Start from a template” I chose template “Quickstart - ReactJS” and go to “Set up your dev environment”. Then I copy the OS command displayed there and run it on my shell (zsh on MacOS). The problem is that this process running on zsh is stuck after issuing message “Running the project” and it never produces a URL that I can paste into the page on monday.com. This is the full process output: xxxxxxxx@yyyyyyy monday.com % npx @mondaydotcomorg/monday-cli scaffold run ./ quickstart-react > Starting scaffolding process > Repository was downloaded successfully > Copying the directory > Installing packages. It can take a few moments > Node modules were installed successfully > Running the project As an alternative, I also tried to follow instructions at
A need some help, I need to update labels without add or change value in the column? any idea or suggestion for that?
If there a query to get the labels of the dropdown column directly?
All, It occured to me today that if all of the App/Developer documentation was in a Wiki that it might be easier to keep it up to date. As it is, when there are differences in what is documented and the way things are actually working (for whatever reason) every developer has to figure things out on their own. Then there may or may not be a post in the community that most will probably not see… You all get it… it’s the main point of a wiki. One source of truth that we can, as a group, help keep up to date and accurate. And basically monday would get the smartest employee on the planet helping them make monday better … for free. Just a thought. Jim
I have the following code but when executed it fails on " var httpResponse = (HttpWebResponse)httpWebRequest.GetResponse();" I have run the query in the playground with my apikey and it works. When I run it here I get a 500 error with no details. var q2 = new GraphQLRequest { Query = @" query { boards (limit:3) { id name items { id name column_values { id text } } } }" }; var httpWebRequest = (HttpWebRequest)WebRequest.Create("https://api.monday.com/v2/"); httpWebRequest.ContentType = "application/json; charset=UTF-8"; httpWebRequest.Method = "POST"; httpWebRequest.Headers.Add("Authorization", apiKey); using (var streamWriter = new StreamWriter(httpWebRequest.GetRequestStream())) { streamWriter.Write(q2.Query); } var httpResponse = (HttpWebResponse)httpWebRequest.GetResponse(); using (var streamReader = new StreamReader(httpResponse.GetResponseStream()))
I have a monday App (10010418) in place. Current flow is as below. App in installed in the account Add any recipe to board User will be redirected to sign-in page Login to our product Redirected back to Monday to authorize the app. Here will monday will list out required permissions and all. Once authorized, monday will provide us with access token, token type etc… The problem, with this access_token, not able to make API calls to monday. API Endpoint: https://api.monday.com/v2 Method: POST Authentication type: Bearer token Request Body: { "query" : "{ boards (limit:1) {id name} }" } Received response from monday { "errors": [ "Not Authenticated" ] } As I understand monday OAuth does not have refresh token logic and access token will stay as long as app in installed in the account. This implementation was working before, not sure at what point this broke.
Following the Qickstart tutorial I learned to create the following query “query2 = ‘query($myBoardID: Int!) {boards (ids: [$myBoardID]) { name id description items { name column_values{title id type text } } } }’” But it doesn’t list the groups in the board, dividing the information per group How can I achieve that?
Hi Team, I’m trying to return a board ID from a Board name and have come up blank on everything so far. Tried putting name in the arguments for boards and it returns that it is not a valid argument. I was just wondering if anyone has a method to do this? Much Appreciated!
If I add an app to a board and as part of the app I change the items displayed on the board, will those changes show up right away in the UI or will a page refresh be required?
Hello! Our team is developing some apps for other clients, but we are not sure about how the permission system works in case we stop working with any of them. My question is, what would we need to do if we want a client to stop having access to our app?
Hi, we are using the setting to do some logic in our app, sometimes, users says that the setting is emptied, but they are quite certain that nobody changes the setting. Whenever they have the setting emptied issue, they refresh the page and the settings are back to normal. Could it be that in some condition, the setting will be “lose”? bayer736162.monday.com
Hi Monday Community, I am trying to figure out how to send files from the multiple file columns via Integromat. The below is how my boards look like. The goals that I want to achieve is, Once webhook triggers, Get an item on my Monday.com board Select Multiple pdf files from the ‘selected’ columns on the board Download via HTTP module Sending as “1” email attachment to my client I’m stuck at No. 3 where I cannot figure out how to select only the columns that I want. Right now, I have to send all the files from all the file columns in the email. Need your thoughtful assistance on this. Many thanks in advance.
I am having troubles getting customer name columns because the column is a linked column { "id": "link_to_item", "text": "Answe", "value": "{value}", "type": "board-relation" }, items_by_column_values(board_id: id, column_id: "link_to_item", column_value:"Answe" ) { id name } This fails to return the item name, but when the type is text it returns the value
how do i change the Kaban names at the top of each one i want to change “working on it” to on-deck
Hi all, Just wanted to take the opportunity to look back on an amazing apps year. Monday.com team thanks for this. To start with the latest hot news, we created our first app building block that can be used with any trigger in the custom automations. Yes, that’s right: the power of monday.com combined with the power of 3rd party developers in one automation. With Excellent Team we started the apps journey about a year ago. Now, at the end of the year we are happy to stated that over the last month we: Generated 75.000 unique and configurable ID’s for items and subitems with the app AutoID Column Converted 81.000 timelines to start and end dates or vice versa with the app Start + End = Timeline Updated 135.000 items in high-level board synced from down-level boards with the app Rollup Multiple Boards Assigned 8.000 persons to items in a round robin fashion with the app Round Robin Assignments Did 12.000 Vlookups with the app Match Index Column … for over 600 happy monday.com acco
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.