Welcome to the new monday developer community
Discussions category for everything related to app development on top of monday.com
Recently active
Hi all, I am using the above current API version with latest monday-sdk-js@0.5.6. It seems, that the content of updates (with limit 1) is null when querying items with the API. When I test the same query in the API playground, the updates result has valid content. It also worked with older API version 2023-10 which is no longer usable. Is this maybe a bug or do I have to change anything? Thanks in advance. Best regards, Marcus
Hello to everyone, I don’t understand if the api 2025-01 are officially released. On monday.com Platform API Someone can please give me a hint? I don’t understand what’s wrong. Thank you Davide
Your API requires the use of multiple levels of nested escaped JSON. For example, when using create_item to set column values. Individual column values may contain newlines and quotes, which need to be escaped. The column_values argument needs to be converted to JSON, so its quotes and newlines need to be escaped, plus the ones in any individual column values need to be escaped a second time. Then the mutation GraphQL document itself also need to be assigned to the query property of a JSON object qhich requires escaping the entire mutation document again. There are multiple ways this nested escaping could be done. After much trial and error I have found that one format that works for create_item is this {"query":"mutation {\\r\\n create_item (\\r\\n board_id: 6172423554, \\r\\n item_name: \\"TEst9\\", \\r\\n column_values: \\"{\\\\\\"note\\\\\\":\\\\\\"Newline\\\\\\nStuff\\\\\\\\\\\\\\"Quoted\\\\\\\\\\\\\\"Stuff\\\\\\"}\\"\\r\\n ) \\r\\n {\\r\\n id\\r\\n }\\r\\n }\\r\\n"} This form of
Hi, I am signed up for monday.com free account. And would like to integrate nodejs app into monday.com. I am following instruction https://www.youtube.com/watch?v=Wc86Mahz6yc&t=544s to create simple app in monday.com But i realised that there’s no “hosting” option in the feature, see below screenshot. also when i tried to push code from local to monday.com, it getting this error Just want to confirm is it because i use free account monday.com Thank you Fransiska
Hi, I hope someone can help with this. I have an app where I want to update values in a board group. I have a Board group menu feature which does exactly what I want. It opens up a dialog and the end user enters values, and I can update the columns I need. But after doing that I want to close the dialog and reset my internal variables ready for the next menu action. I can’t find a way to do that. moday.execute ‘closeDialog’ crashes, ‘closeAppFeatureModal’ doesn’t crash but doesn’t close the dialog either. How can I do this. Many thanks for your help.
app_subscriptions and marketplace_app_discounts are API objects that appear in the playground. But when we download the SDL, that schema does not include them. Its like the SDL is only generated for the customer account side of the API, not the full API that includes the developer side. The distinction is just a permissions issue based on token - and maybe different development teams. Its the same API endpoint so the same API. Either way, its a pain because autocompletions and validations based on the schema fail if we try to use them. I am not making this a feature request because this is a BUG. Somebody forgot to include these resolvers in the public schema - the schema doesn’t match the API. That is a bug/error/flaw/omission. Its not a missing feature. EDIT the introspection query does return the full correct schema though. It is just SDL/JSON formatted ones available for download that are wrong. Oddly you’d think they’d use tooling to generate those from introspection and then cach
Hey, everyone! Quick one. I have this 7pace integration and I need to pull the time tracking using monday API. But there’s no way I can get the right data. 7pace App creates a custom_objects called All Times (it’s not a regular board persei). When I get all boards inside my 7pace workspace this All Times comes listed, but when I try to get items I’m not able to get the right rows (it brings a few rows that seem wrong or out dated). Hope any of you have run into this before! Thank you, all
Hi all 🙂 I’m currently in the process of building a custom action for an integration app feature. I’m wondering how I can possibly utilize the following built-in input fields: It doesn’t seem like there is a built-in way to create/assign dependencies for these input fields to rely on (without creating my own custom triggers/fields), as both of them seem to give this (lack of) feedback when used in an automation recipe: and To clarify the question: How do I assign dependencies to these input fields (ideally without creating further custom fields/triggers) in order to use them for a custom automation recipe?
Queries like getting the columns data or items were working fine in automation scripts till yesterday .Today we see 400 Bad Request . They work fine with POST , was there any upgrade overnight ? Will GET not be supported in future? Using 2023-10 API version.
Hi all, I am trying to connect a PowerAutomate flow to Monday’s webhook automation. Clearly the PowerAutomate receives the webhook, because my flow runs every time I try to CONNECT and I get the challenge JSON in PowerAutomate. However, in Monday.com, there isn’t a connection established after this and I get error message: ‘Failed to communicate with URL provided’. I think this is likely due to MS PowerAutomate not sending the challenge-response back to Monday. Does anyone know how to circumvent this issue?
HI There, We are getting 200 status code with 2025-01 instead of 429 in an event where the complexity budget is exhausted. See the picture below. The 2024-10 version correctly returns 429 error code with Retry-After header. Can you please fix this? Thanks
When copying a board from a template using the API completely breaks, and the integration itself stops working. A very odd error! Are there workarounds for this? Can I copy the board using the API and then use some API calls to create the automation afterwards? Any advice is appreciated. This is a BIG PROBLEM!
Hello, I’m currently trying to use the following formula to subtract purchased inventory from a mirrored column on my board: Formula: (Column 1) - (Column 2) General Caster Recipe: This formula works correctly when applied to a standard (non-mirrored) column. However, when I attempt to cast the result into the mirrored number column, I receive the error message: “Resource not found.” I have verified that the mirror column ID is correct, and the formula itself is functioning as expected. Could you provide any insights into what might be causing this issue? Thank you!
Hi, I need to integrate my Monday boards in two ways: Export my Monday boards to BigQuery tables. Sync external tables as boards from MongoDB documents. Do you know of any recommended solutions? I came across an app called BigQuery Integration. Has anyone used it? Do you have any other integration solutions that you have found successful for connecting to Monday.com?
Hello everyone, I am working on a project where I need to create multiple columns in a Monday.com board. I want to add 10+ columns with different types (text, numbers, date, etc.) using the Monday.com API. However, I found that creating multiple columns in a single request is not supported natively in the API. I am currently considering using separate requests for each column, but I’m wondering if there’s a more efficient way to do this programmatically. Can anyone suggest the best way to batch create multiple columns using separate requests or any improvements to the approach below?
I’m trying to upload a new build for a feature but monday keeps showing the message : “New app feature build upload failed”… And in the Feature section, it looks like the zip file that I added is in a constant loading state. In the console the message show is: “Failed to load resource: the server responded with a status of 400 ()” I can’t find an aswer to this issue in any of the docs or within the developer community, can someone here help me resolve my issue?
Hello! I am working through the Privacy and security requirements listed here: Privacy and security and it says: All domains must pass the provided Burp scan Maybe I am not looking in the right place, but is there a provided Burp scan I should be referring to? Or is the out of the box Burp Suite scan sufficient? Thanks! Jason
Hi guys, How can I get items and specific column values from specific board view in 1 query? Thank you, May
Hey, I’m creating a new timeline item in the E&A section every time there is a new outgoing phone call. The goal is that the sales rep will add the call summary in the custom activity that was created automatically, without having to create it themselves. The issue is I’m not able to edit this activity, how can I overcome this challenge? Do you have any ideas? Thanks!
Hi everyone, I’m working with Monday’s GraphQL API and need some guidance on structuring queries for complex board structures. When dealing with multiple layers of data—like boards, groups, items, subitems, and column values—my queries sometimes feel inefficient or return more data than needed. What’s the best way to optimize GraphQL queries for handling deeply nested board structures? Are there any best practices to avoid performance issues while ensuring I retrieve all necessary data? Would love to hear any recommendations or insights from those who have tackled this before! Thanks in advance.
Hey there! I’m getting started with building apps on Monday.com and want to make sure I set up pricing, billing, and checkout the right way. What’s the best approach for developers to manage these things while keeping everything smooth and user-friendly?
I am able to retrieve all items of a specific board with the following query, however, it doesn’t seem it is possible to also include items that are non-active (deleted and archived). The query below only return items with state=‘active’: query Items($board_id: [ID!]) { boards(ids: $board_id) { items_page (limit: 500, query_params: { order_by: [{ column_id: \\"__last_updated__\\", direction: desc }] }) { cursor items { id name state created_at updated_at board {id} } } } } In the Items API Reference, I see there is a way to get non-active items by passing exclude_nonactive: false but it only works if I pass the list of item_ids along. To give more context on why I need the query above to work, I have an ingestion pipeline that executes the mentioned query and gets all items of a board. Additionally, it also orders by last_updated so it will stop pulling pages if it sees there is no other item that was updated after the previous run. Therefore, I cannot afford to pass the l
I’m a contractor at a company that has a few monday.com react apps that I need to fix in order for their tools to work again. Unfortunatly, the developer who originally built their custom forms no longer works at the company and didn’t leave us with any way to access the react apps in a proper way. That being said, I have successfull unpacked all the map files and was able to re-create the package.json file which got me past the build errors. I’m now struggling to know how to add oAuth to the app so that I can connect to boards while developing locally. Can anyone help me understand where oAuth should be added in the react app project?
Hi, I would like to ask you to help me understand monday SDKs. So far I’ve been using monday-sdk-js and it’s been mostly fine. However, now I’m planning to use client-side monday storage and from what I see, the searchItem method is described in the docs and release notes, but missing in the library (I’m running the latest version 0.5.6 published 2 months ago, which is still older than release notes): However, the method seems to be available in the apps-sdk. Now I’m confused: What exactly is the difference between these two SDKs? How should they be used (together; choose only one; or maybe one on client and the other one on server)? Why monday-sdk-js doesn’t implement the search method?
Hey monday.com Marketplace Partners and Developers Community! 👋 I’m opening up my office hours for February and would love to connect with you! What can we discuss? Let’s chat about: Your Company & Apps: Share a quick intro about your company, the apps you’ve built, and the pain points you’re solving for users. Product Feedback: Have any feedback on the monday.com apps framework, API or Marketplace? I’m eager to hear it! Marketplace Consultation: Need advice or have questions about the monday.com Marketplace? Let’s talk strategy. Community Ideas: Got ideas for content, events, or activities that would benefit our community? I’m all ears! Looking forward to meeting you! Schedule a time that works for you using this link
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.