Welcome to the new monday developer community
-
Recently active
I want to delete Docs from my application but in the API its not available, how can I delete Docs ?
I got some rendering errors while using vibe components. As an example, this is my code using Tooltip components And here are the error messages I tried removing these components instead of antd components and the error messages disappeared. Has anyone encountered this case?
Hi, I am triggering create items on Monday board through external events. I am sending the trigger request to the monday webhook url at an interval of 3 seconds. I notice that I always get one item less. The first item/request does not reach the monday board as seen in the Integrations Activity logs. Although, when I change retrigger those requests after some time, I get the missing item on the board. Can you please let me know what I might be missing here? Thanks!
We are happy to announce that We developed new version of Private Notes and Comments according to your feature requests! New features and improvements Tagging other board members and board owners and sending notifications about the private comment in the item view. “Board Owners Only Private Comments Item View” enables you to keep your comments between only board owners Update or Install If the app is already installed in your account go to the installed apps and find the private notes and comments app and click the update button. If the app is not installed use the link
Hello fellow monday.com and microsoft teams users! I’m working on a project to create an app that can improve the integration between these two amazing platforms. 😊 I’m curious to know what are some of the challenges or frustrations that you face when using the current integration. What are some of the features that you wish were available or better implemented? How do you use the integration to manage your projects and collaborate with your team? Please share your pain points and suggestions with me in this thread or send me a direct message. I appreciate your time and input. Thank you! 😊
Hi there, We are currently building an application which is able to create Boards, Groups, Items and SubItems via the API by importing third-party projects into monday.com (data formats which are currently not supported by the official importer). Everything worked so far until we reached the SubItems. Attempting to create a SubItem via the create_subitem mutation results in a NoSubitemsColumnInThisBoard error telling that “There is no subitem column on this board, please add it first”. Unfortunately creating SubItems is a key-feature for our use-case since we are importing data which is structured as multiple layers. Quick Example: 1.1 Collection of tasks 1.1.1 Main Task 1.1.1.1 Sub Task 1 1.1.1.1 Sub Task 2 We even tried to issue a create_column mutation with the undocumented type subtasks as observed in the UI which failed as well. Is there any to create SubItems via the API without touching the Board in the UI? Thanks in advance! For reference, this appears to be the same issue:
I am developing 2 apps interacting with Monday.com. Both of them need to authorize in order to make subsequent request to Monday.com using GraphQL API. The authorization works smooth with one redirect_uri but if I put second redirect_uri I get an error “invalid redirect_uri” however there is a option to add multiple redirect URI. Does it work with multiple apps? Need help/suggestions on this. Using this OAUTH (OAuth and Permissions) Thank you.
Hello all, Is it possible to render html content when calling to addDocBlock method of the api? I’d like to add a button for example as data content for the block. Thanks, Gorka.
Hi There, I’m trying to sync data from Active Campaign to our new Monday CRM boards, using Make.com. However the integration is failing, I think because of the format of the phone number. Active Campaign gives us a single number, including the ISO code for example. 447904446802. But it looks like Monday expects the ISO code separately? I’ve tried turning off the ‘flag’ in the column settings on the Monday board, but this does not seem to have helped. Any bright ideas much appreciated!
Hello all, I’m developing a monday.com dashboard widget and have hit a major blocker. The widget needs to make a get request to an external resource, and the request gets blocked by monday.com’s CORS policy. I have gone through the developers forum and read a couple of people have the same issue, but there doesn’t seem to be a solution. Can anyone provide me with any advice/guidance on how to get around this issue? Thanks
I am using monday for production tracking in a manufacturing shop and currently have my board organized around purchase orders. I am working with large purchase orders where it will take up to a week to produce the parts the order requests, I would like to be able to record how many parts my shop produces each day towards the total tally. Has anyone ever tried doing anything similar or have any good ideas to build it. Thanks.
We are switching from Zapier to Power Automate. I am trying to use Call GraphQL feature and have run into an issue. I’m fairly new at JSON, so forgive me if this is a simple thing. The flow is failing with this error: “The provided input content is not valid: ‘The provided content-type header value ‘application%2Fjson’ is not well formed.’.” This is the query I’m using. { boards(ids: 2346905490) { items(ids: @{triggerOutputs()?[‘body/itemId’]}) { assets { public_url name } } } } I appreciate your assitance with this issue.
I am having troubles connecting my Google Sheets info into Zapier and then to Monday. This is the error I am receiving: Invalid value for {“phone”=>“”, “countryShortName”=>“2679689643”} on PhoneColumn. invalid value, please check our API documentation for the correct data structure for this column. Guide to Changing Column Values Can someone help me figure out what I am doing wrong and how to get my info into Monday.
Hi, I’ve nearly finished developing a Monday.com app and I was hoping to make use of the Monday monetization framework to handle billing so that I don’t have to setup a whole system to deal with that. The documentation states that the system is being gradually released and I won’t be able to use the Monday monetization framework for all customers. Is there an indication of how far through this release process Monday.com are? I want to know whether it’s worth the effort to write my own billing system for the percentage of customers who won’t be able to be charged through the monetization framework, obviously it’s worth the time to implement by own billing if 90% of customers are not on the new system but not really worth it if only 5% are not. Also are there any details available on how different plan tiers are setup? The concept of plan_ids exist in the documentation but there’s nothing to say whether they can be setup based solely on the usage of the particular app or whether there ca
I’m a little confused on how we get our app monetized. Do we first submit the form and get approved, then we can test out the mock subscription? Or can we do mock subscription first with test values? Our team has other questions but we’ll probably schedule a call for those.
Trying to query items by name (exacly like the one listed in the example with the correct board id and without the country column), results in a 404 Column not found (store.monday.automation.error.missing_column) Items page by column values (monday.com) I have the API-Version header and a valid authorization, so not sure as of what I might be doing wrong. Any help would be appreciated!
Hi monday team, could you please help me point the advantage from building app via uploading zip file instead of url. I need the answer to apply to our app. Thank you.
Hi. I’d appreciate any advice on the error response I am receiving from GraphQL. I am trying to update a date column using the mutation “change_simple_column_value”. Here is the error I am getting: {{ "error_code": "ColumnValueException", "status_code": 200, "error_message": "invalid value, please check our API documentation for the correct data structure for this column. https://developer.monday.com/api-reference/docs/change-column-values", "error_data": { "column_value": "{\\"date\\"=>\\"\\\\\\"2019-06-03\\", \\"time\\"=>\\"13:25:00\\\\\\"\\"}", "column_type": "DateColumn" }}} This is the string I am sending: string dt = "2019-06-03 13:25:00"; string value = @"\\\\\\""" + dt + @"\\\\\\"""; string query = "{\\"query\\" : \\"mutation { change_simple_column_value(board_id: " + boardId + ", item_id: " + itemId + " , column_id: \\\\\\"" + columnId + "\\\\\\", value: \\\\\\"" + value + "\\\\\\") { id } }\\"}"; This works in the Monday.com “API Playground”. I think th
Hello, i am replicating the example usage above and can’t figure out what’s the issue. Do i need to update my API version somewhere? i cant figure it out
Hi everybody, I work for Crazy Ant Labs, a Monday partner and we’re working on an app that’ll turn Monday workdocs to a full fledged website, available outside of Monday. You’d be able to use it to create documentation sites, wikis, blogs, content sites and more. If you’d like to get early access to the app, hear more about it and help us design it, please sign up using this form or feel free to comment or ask questions here. Your feedback is appreciated! Cheers, Saggi
Hi monday.com family! We’ve been brewing something special for you. Check out the new features and improvements in Version 2.8.0 of TeamBoard Resource Planning. 🔧 If you enjoy smoother planning and nifty updates, you won’t want to miss this! Share your thoughts in the comments. New Features: Time Frame: Select a time frame on the calendar to quickly calculate numbers based on scheduled hours and working hours. Workload Mode Support for displaying sub-items Creation of the top bar Bug Fixes and Improvements: Improved UI and performance Corrected the Tipseen issue Fix: User order was reset when filtering P.S. A big thank you for being a part of our journey! 🌟🎸
I’m running the following query on 2023-10, which tries and restrict the results to subitems assigned to myTeam (using the summary column on the item level) query { items_page_by_column_values (board_id: XXXXXXX, columns: [{column_id: "subitems_team", column_values: ["myTeam"]}]) { cursor items { id name } } } The above gives me a Column of type lookup is not yet supported for this query was hoping for a workaround? (even though the “not yet” is promising)
Hi team! I’m trying to test my server endpoint for my app event webhook (unstall, unistall, app_subscription_trial_created, app_subscription_created, etc…). I entered my server URL endpoint for the “All events” input, in my app “Manage Webhooks” page. My question is how can I test this endpoint with a mock webhook that will be sent from monday to my server endpoint? I saw there is mock_subscription that I can use, but how should I use that? where/when it will fire the event to my server? and how should I create this mock? I want to test all kinds of subscription event as I mentioned above and more. Or maybe there is another way to test those cases without this mock? Many thanks in advanced! 🙂
Hi there, A question for what is a supported search parameter in the new “items_page_by_column_values” function I am currently trying to replicate a functionality I had in 2023-07 API: items_by_column_values( board_id: BOARD_ID column_id: "name" column_value: "SERIAL NUMBER" ) { id name column_values { title text } } With this query I could find get all the columns for a given an item name (serial number) on a board. Additionally the complexity value was 5000, so it returned fairly quickly. It also gave the text values for mirror columns I had on that board which linked to other serialized items which I needed. However, when I try to do this same thing with the new “items_page_by_column_values” function I tried: { items_page_by_column_values( limit: 1 board_id: BOARD_ID columns: [{column_id: "name", column_values: ["SERIAL NUMBER"]}] ) { items { id name } } And got a “Column of type “Name” is not yet
I am looking for a way to transfer/migrate data from Clickup to Monday.com. Transfer folder with their tasks, files, comments, etc
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.