Welcome to the new monday developer community
-
Recently active
Hi guys, I’m developing an app which gets data from external API and returns them into a board. The app works perfectly fine if I use build-in trigger (“When column changes”). However, I’m forced to use custom trigger (“When text or number column changes”) to restrict trigger column type. To achieve that, app uses custom trigger in which specifies trigger column type to text, long text or number only. I implemented subscription/unsubscription endpoints to get the webhookUrl and manage the subscription. I’m able to call the webhookUrl with in Postman using tunnel to my localhost. The action is called properly as expected. Now, I’m stuck with calling it programmatically. I thought, I’d create a new webhook which should call the webhookUrl via my app: When column changes Call my monday app endpoint (using monday code) Select proper webhookUrl from app storage Call selected webhookUrl Action trigger is called and make the integration running Questions: Does it make sense to you? Is the
Hey, I’m unable to add content as it gives unrecognized property and bad request. Here is my query: mutation CreateTableBlock($docId: ID!, $type: DocBlockContentType!, $content: JSON!) { create_doc_block( doc_id: $docId, type: $type, content: $content ) { id } } { "docId": 123456, "type": "table", "content": "{\\"column_count\\": 5, \\"row_count\\": 2, \\"deltaFormat\\": [{\\"insert\\":{\\"columns\\":5,\\"rows\\":[{\\"cells\\":[{\\"insert\\":\\"File\\"},{\\"insert\\":\\"Line\\"},{\\"insert\\":\\"Match\\"},{\\"insert\\":\\"Commit By\\"},{\\"insert\\":\\"Open ticket day\\"}]},{\\"cells\\":[{\\"insert\\":\\"path/to/file\\"},{\\"insert\\":\\"100\\"},{\\"insert\\":\\"example match\\"},{\\"insert\\":\\"username\\"},{\\"insert\\":\\"2024-03-05\\"}]}]}}]}" } Could you please check what’s wrong here. Thanks in advance
I am building an app and for testing I am using 3 accounts to share my app with let say A and B so in A I am getting context of that board and user but when I open my app for account B I get’s this Well I need this to test how my app features are working any idea on how to solve this
I saw this custom trigger in an app and I was wondering how I could do a similar thing (please see screenshot). It is meant to be a custom trigger that triggers when a mirror column changes. So far, I’m able to return the list of mirror columns by creating a custom field and I created subscribe and unsubscribe endpoints but that’s about it. I know custom triggers are triggered when you call the webhook url but I’m not sure how to set things up such that I know when a mirror column changes so that I call the webhook url. cc: @Matias.Monday @anon29275264 @dipro Thanks a lot for your help.
Hi there, I have an error when creating an item with a dropdown column if the value include a comma. I send the label value, not the key. To make it simple, I have this mutation: mutation { create_item (board_id: 4444444444, group_id: “mygroup”, item_name: “myName”, column_values:“{“dropdown”:“A value, containing a comma”}”) { id, } } When I send this query, I get the error: The dropdown label ‘A value’ does not exist, possible labels are: A value, containing a comma Do I need to escape the comma?
Hi All, We built Smart Timer and Team Tracking app for monday.com to address the demand for more sophisticated time tracking features then the native monday.com time tracker clock. Unlike any other option, with this app multiple users can simultaneously record time directly on an item (with the same look at feel as the native timer). Also Managers can track team progress in real-time by viewing running clocks of users who are automatically assigned with just one click. Integrating seamlessly with your account for easy installation and user-friendly operation. Join our weekly group info session and ask any questions you may have live! Or book a one-on-one demo here. Who would use this app? 👥 Businesses with remote employees can maintain a real-time overview of tasks and time allocation to effectively oversee and manage their remote teams. 📄 Businesses that bill clients for completed work can meticulously track time, down to the second, for each task – whether it was acco
Hello everyone! I am very new to GraphQL api and I come accross a problem when I am trying to create a new item using a dropdown with a value containing a comma. To make it simple, I have this mutation: mutation { create_item (board_id: 2322589638, group_id: “topics”, item_name: “ITEM_NAME”, column_values:"{“dropdown”:“This is my value, containing a comma”}") { id, } } When I try sending my POST request with POSTMAN, I get the error: The dropdown label ‘This is my value’ does not exist, possible labels are: This is my value, containing a comma I am unsure how I can do to escape the comma. Here is my original request: mutation { create_item (board_id: 2502539628, group_id: "topics", item_name: "ITEM_NAME", column_values:"{\\"menu_d_roulant1\\":\\"Diplôme ou titre à finalité professionnelle de niveau Bac+2 (DUT, BTS, DEUG)\\",\\"dup__of_rgpd__origine_e_mail\\":\\"Client\\"}") { id, } } and the error I get: { "error_code": "ColumnValueException", "status_code": 200, "error_
Hi monday team, After implementing the Account Settings view in our app, we’ve noticed that any board user has access to the Account Settings view via the app’s item view. We’ve tried with a user that has only viewing access in a board and the user could still open the Account Settings view from the app’s item view. From our initial understanding (and from the documentation page), Account Settings should represent global settings that impact the entire account. From our experience, these kinds of settings are normally administrator-only, or at least configurable with a permission rule of sorts. My question is; is it intended for any user to be able to access account-wide settings? If not, is there something we might have missed in our app’s design or is it something that should be looked at by your team? Kind regards,
I am looking to automate some tasks once someone is assigned to a task. I would like to get that persons email address and using it in another automation. For the moment, I seem to be stuck on how to gather ther persons email address. Initialy I tried to find a way to gather it directly from the Person item, however this lead to a dead end. I then thought maybe I can use the Person item name to look it up in another board, but I dont seem to see any options to do this. I thought maybe I can trigger a custom action/script, but I cant seem to find a way to do that either. Im sure there must be a way to get the informtion I am after, surely? Any help would be appreciated.
It seems the Text component in vibe is missing in monday-ui-react-core. I think another component was missing a few days ago, but can’t remember what it was. Is this being updated? Looks like the Text component exists in the Github vibe repo so maybe something didn’t get pushed to npm? Error below: export 'Text' (imported as 'Text') was not found in 'monday-ui-react-core' (possible exports: Accordion, AccordionItem, AlertBanner, AlertBannerButton, AlertBannerLink, AlertBannerText, AttentionBox, Avatar, AvatarGroup, Banner, Box, BreadcrumbItem, BreadcrumbsBar, Button, ButtonGroup, Checkbox, Chips, Clickable, ColorPicker, ColorPickerContent, ColorUtils, Combobox, Counter, CustomSvgIcon, DatePicker, Dialog, DialogContentContainer, Divider, Dropdown, EditableHeading, EditableInput, ExpandCollapse, Flex, FormattedNumber, GridKeyboardNavigationContext, Heading, HiddenText, Icon, IconButton, InputField, Label, LinearProgressBar, Link, List, ListItem, ListItemAvatar, ListItemIcon, ListTitle, L
hello community -I’m totally new to Monday, so apologies in advance if this is really silly. In my head… I’m hoping to add a button to a board. When a user clicks this button a webhook goes off with some data (board id, some report identifier). Somewhere else through the API this board is then updated with a new group, and some items that come from another system added to this group. this seems super straight forward to me…but there seem so many ways of doing things, and approaches, that I’m lost. Is it possible to have a button on a board? We don’t want a button in groups, or items. It would just be a button on the board that said “Refresh” or “Update” with the above then taking place -presumably really quite fast, but that’s not important right now again, apologies if this is easy/silly!
September 2024 brings an exciting update to TeamBoard on Monday.com—Recurring Tasks . If you’re tired of entering the same tasks over and over again, this new feature is for you! Why Recurring Tasks? Let’s face it, managing projects means dealing with a lot of repeat tasks—like weekly team meetings , monthly reports , or daily check-ins . Now, instead of manually adding these tasks every time, you can set them to repeat automatically. Sounds like a time-saver, right? Here’s how you can start using Recurring Tasks to make your life easier. Recurring Tasks in TeamBoard Managing repetitive tasks just got a whole lot easier with the new Recurring Tasks feature in TeamBoard for Monday.com . If you find yourself entering the same tasks over and over—like weekly check-ins , monthly reports , or daily stand-ups —then this feature is perfect for you. What are Recurring Tasks? Recurring Tasks let you automate tasks that need to happen regularly. Instead of manually creating the same task every
So, I have a simple query query GetBoardItems{ boards(ids: 7144577487) { items_page(limit: 5) { items { name column_values { text } } } } } Which provides me with values of 5 lines in a board. Problem is that I receive null where this column is connected with different board. e.g: [ '006', null, 'number', '436911', '12/40', 'Open', null, null, '15 transactions per 24 h', 'photo', '', 'Owner' ] and all those nulls are values from a different board, there are names of employees, and I wanted to filter that data to get only one’s employee line, but since there is no name, I can’t get only that value. The only thing I found is a linkedPulseId, that gives me some number, but I still couldn’t find how to get the text value of those mirror columns.
i need to know serverless apps details
I have a Clients board with Mobile (phone column). I use API to search the board and get the matching client id. Please see the Clients board with values in the attached screenshot. I use this query for search. query { boards (ids: 1917599964) { items_page (query_params: {rules: [{column_id: “mobile”, compare_value: [“+912222333345”]}]}) { cursor items { id name } } } } I get this result even thourh there is row in the board with matching mobile number value. {“data”:{“boards”:[{“items_page”:{“cursor”:null,“items”:}}]},“account_id”:25600960} Need help to fix this.
I have an application querying API version 2024-04. The application creates billing a billing report based on time tracking data. The report no longer pulls time tracking data for subitems. Items work just fine. The subitems no longer contain time tracking data in the response. We are pinned to API version 2024-04 via the “API-Version” request header. We make this request once per month. The last successful run was August 5, 2024 at 6:41 AM EDT. There have been no changes to out application since the last successful run. I’m baffled at how nothing changed about the request, but the response has changed. Anyone have any ideas?
Service Level Agreements (SLAs) are crucial in ensuring that businesses meet their agreed-upon response and resolution times for customer support and operational tasks. Our SLA app provides precise calculations for your SLAs, including Time to Response, Time to First Response, and Time to Resolution, or even your own customized Operational Level Agreements. The app calculates due dates based on your team’s working hours and time zone while also factoring in public holidays. This ensures that your service commitments are aligned with your operational reality, helping you stay compliant and responsive. Here we show you our app in use Features Real-time SLA Monitoring Stay on top of your SLAs with real-time monitoring. The app helps to keep you up to date with timely updates and notifications, ensuring you’re always aware of the status of your service commitments. Whether it’s keeping track of response times or identifying potential issues, you’ll receive the information you
I’m excited to share that Mediaposte Martech has developed a new app designed to enhance your monday.com experience: the Google Sheets Sync Bridge! This app makes it easier than ever to sync your monday.com data with Google Sheets, allowing seamless two-way data flow between the platforms. Key Features: Automatic synchronization between Google Sheets and monday.com boards. Real-time updates to keep your data in sync as changes occur in either platform. Customizable mapping of monday.com columns to Google Sheets. Effortless data analysis and reporting using Google Sheets’ advanced features while keeping your project management organized inmonday.com. This tool is ideal for teams that want to streamline their workflows by integrating the simplicity of Google Sheets with the powerful project management capabilities of monday.com. You can explore and start using the app today by visiting Google Sheets Sync Bridge | Mediapost Martech | monday.com Silver Partner As fellow partners,
Hello, I’m trying to remove the Trial from our app, but in Preview it still says there is a Trial. Are we not allowed to remove Trial altogether?
Hi All, I want to develop my custom app to create settings page for my app just after the board main table tab with custom html and content. have a look in screen shot Screenshot by Lightshot How can we do that with code. Regards Abhishek
Hello, I can create or read formula column through api, but how to add formula through api ?
Hi all Due to our governmental funding requirements, I’m trying to migrate our current instance from the US server to the AU I know the cross account copier doesnt work across regions, so have been trying to find a solution that doesnt require manual re-entry of data Was heading towards what I thought might be a solution via a make.com workflow (get table data, create table, get group data, create group, get column data, create columns, get item data, create items) However its falling over at the create columns due to errors regarding certain ColumnTypes not being supported in the api Rather than running the job repeatedly and excluding these one by one, is there a list of current data sets which arent valid in the API? Or is there a better way to do this? I tried export / import to excel but that would take a ridiculous amount of time and require alot of manual cleanup on every table since we use alot of sub-items and these come into Monday as main board items
Hey everyone, I’m Ronen Babayoff, the founder of EasyApps, and I’m thrilled to share some exciting updates about EasyForm with you! 🚀 What’s New in EasyForm? 1. Pre-Fill & Pre-Select Form Fields With URL parameters! We’re proud to be the first monday form builder to officially support URL parameters! With this powerful new feature, you can: Create Personalized Forms - load form fields with data from your monday boards or external sources to deliver a tailored user experience. Speed Up Form Completion and improve data collection accuracy. Pre-Select Desired Options to point your users to your desired outcome. 👉 For more information, check out our URL Parameters Docs. 2. Free Plan with All Our Features Great news! We’ve launched a free plan that includes all of our advanced features. This includes your ability to set values for hidden form fields (item default values). This unique feature gives you the flexibility to effortlessly add context to submissions wi
I followed the instruction in the readme.md and setup.md of the quickstart-python I can get the basic email integration app to run smoothly, I think that my problem is around OAuth process. I ran the server locally and used the tunneling service to expose the local service. Under feature details I enabled the Authorization URL checkbox and set the Auth url to /auth I redirected URL’s to the following URL: https://xxxx-xxxx.apps-tunnel.monday.app/auth/monday/callback (the url provided when tunnel was created) I created custom action, set the workflow blocks, defined sentence for action, provided relative path to the action in the API (/mail/send), created a recipe. When I try to add the integration to my board, I see the following log in my flask server: 127.0.0.1 - - [18/Sep/2024 20:07:56] “GET /auth?token= HTTP/1.1” 308 - It stuck for about a minute and than I get spam with: 127.0.0.1 - - [18/Sep/2024 20:12:48] “POST /logs HTTP/1.1” 404 - Under the consts.py I added the followi
Hello community, I am now taking Monday.com API certificate course and very new in code writing. I have built a board view app with the sentence “Hello, monday apps!”. I need then to set an event listener using the monday.listen method so when a background color is changed, the selected color will actually apear in that board view. Unfortunatelly I get an error massages like “unexpected token” or “Missing Semicolon”. Here is the code, your help will be appreciated. Thank you 🙂 import React from “react”; import { useState, useEffect } from “react”; import “./App.css”; import mondaySdk from “monday-sdk-js”; import “monday-ui-react-core/dist/main.css”; //Explore more Monday React Components here: https://style.monday.com/ import AttentionBox from “monday-ui-react-core/dist/AttentionBox.js”; // Usage of mondaySDK example, for more information visit here: Software development kit (SDK) const monday = mondaySdk(); const App = () => { const [context, setContext] = useState(); useEf
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.