Welcome to the new monday developer community
-
Recently active
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
Hi, I have a question regarding zapier integration with monday. I want to trigger a zap when a monday status column changed. It did’nt used to be a problem, but lately, monday integration in zapier is not able to find the trigger from monday. I tried all sorts of things: logging out, adding new rows, trying in a new zap. It’s now happening most of the time nowadays when trying simply to trigger a zap when a status column changed. Either the request from zapier is throttled or it can’t find a instant trigger event. Is there a change from Monday API I should be aware? Thanks for the replies.
When a customer’s free trial has ended or is about to expire, does monday automatically send out an email letting them know to subscribe to a plan? I’m trying to figure out if I would need to set that up myself as an app developer or if monday already does this. I don’t want customers to be caught off guard when their integration suddenly stops working.
Today I was going through Webhook docs for App Events , and In There code Snippet It need to be MY_CLIENT_SECRET. May be just small typo error.
🚀 Exciting News! 📢 We’re thrilled to announce the launch of our amazing new app on the monday.com app marketplace! ⏱️⚡ Introducing the Clockify and monday.com integration for seamless time tracking. 🕒✨ Now, you can effortlessly track and manage your time directly within monday.com streamlining your workflow like never before! ⌛📈 🔗 Connect Clockify and monday.com today and enjoy benefits like: ✅ Accurate time tracking for projects ✅ Easy invoice generation based on tracked hours ✅ Real-time insights into your team’s productivity ✅ Simplified project management and time allocation Whether you’re a freelancer, small business owner, or part of a large team, this integration is a game-changer! 💯 Don’t waste another second! ⏳ Head over to the monday.com app marketplace now and discover how this powerful combination can revolutionize your work processes. 💪💻 👉
What are the criteria for an integration column to be created form a custom action trigger. As an example when using the google calendar integration, when a link it created updates the items integration column with a link to the created event. As far as I can determine there are some rules that need to be met for this column to exist but those do not seem to be documented anywhere
I am able to create an item without trouble if I do not reference the item files column and I get back the new item ID and save that for future use. I have the URL to an image, fully qualified, as in https://cdn.mysource.com/foo.jpg The board has a column of type file with an ID files and therefore I want this image to be assigned to it. No matter what I do though, Monday returns {"error_message"=>"Internal server error", "status_code"=>500} When I include the column with the image, files: image, the image string URL the create fails. Why??? I tried the mutation with the item_id and column_id and providing the id of the items file column, same deal. mutation($item_id: Int!, $file: File!) { add_file_to_column (item_id: $item_id, column_id: "files", file: $file) { id } } How can I create an item with an image using Monday API? What is the secret? Please!
Hi All, I’m using monday API documentation, Items Page to filter results the data from specific date range. But I found the maximum number of items to return is 100. I would like the query can return more than 100 items with filtering function. Could anyone suggest it? Thanks very much in advance:) Best Regards, Jia Tang
Hi, Do we have a API in Monday.com to create a Customer or Contact in Monday.Com CRM? Please share the API link Thanks
Hello, there! I was looking for a solution on how to receive events about sub-item changes in the parent context, and found this closed topic. A small quote for a broader context monday.listen(“events”) not quite working with subitems. I’m sure dev team aware of it, just wanted to have some roadmap or estimation, when it will work? Currently, there is no event when the subitem is updated. And when new subitem has been added the generated “event” is for the parent item update, with all subitems, so it’s impossible (afaik) to detect actual new subitem. Do monday team have any updates or workarounds to solve this problem? Best regards, Dima
Hi, I can’t find this filter feature in our own developed Custom Dashboard Widget. May I know is this feature available in Custom Dashboard widget? Thanks Br, YH
Greetings community. I am developing a widget and in its configuration window I have a dropdown list type field to which I must add options dynamically, this through the SDK. Thanks in advance.
I want to send the file as base64 in the API I know that I have to use https://api.monday.com/v2/file to send a file, and I uploaded a photo from my system in postman as a test. But I want to send the file as base64 with any extension such as csv, xlsx, xls, doc, pdf, etc. Thank you for telling me what to put in postman instead of the image key pay attention to the image below
It’s an exciting day for monday.com users, as we’re proud to officially announce the relaunch of Recurring Tasks. Our new app empowers you and your teams to take your monday.com use to the next level by accurately reflecting routine or regularly recurring tasks in your monday.com boards, calendar, timelines, Kanban, and reports. Whether you’re a content creator or social media manager looking to schedule regular LinkedIn, Twitter or Instagram posts, or a Project Manager updating daily sprints, perhaps you work in Accounts or Finance and need to send regular expense reports. Whatever your role, we all have tasks that we perform regularly; they become almost second nature to us. But what if your wider team needs visibility over those tasks? What if you need to easily and quickly share important dates and deliverables with your key stakeholders? Having to do so manually often takes more time out of your already busy day. Thankfully, there’s now an easier way. Step forward Recurring Tasks
What is the recommended way to determine when to delete personal data for an account to be in compliance with the Developer Terms (see bullet point four here: Security and privacy)? Would querying the App Subscription via the API be sufficient? Here’s how I could see how the logic might work: If there is an active subscription, then the data wouldn’t be deleted. If there is not an active subscription or the API request fails due to authentication issues, then the personal data for the account should be deleted within 10 days. Another way I could think of it working is via the app events webhook, though that seems less reliable in case a webhook is missed by my server.
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.