Welcome to the new monday developer community
-
Recently active
Hi, I want to build an APP that through custom actions I will make all kinds of API requests back to my monday after I have done manipulations. Everything works as it should. For such API requests I need my API KEY, My question is - if I want to give access to the application to additional monday accounts, do I have to get the API KEY from them or is there another way? There are many apps I see in the market that have their own automations, and I didn’t give them my API KEY. Thank you
Is there a way to add a new view for automations? I would love to be able to add a wizard in automations/integrations set-up for some upcoming applications we are building.
Hello. I wanted to look into developing an app based on the ideas board. Two of the ideas mention writing a Search and Replace app for boards and workdocs. I’ve also noticed that Monday.com already has a very powerful search facility that seems like an ideal starting point for doing a search and replace app. Ideally there would be a way to extend the search facility, so I turned on the Chrome web developers tools to see what’s happening under the hood when we do a search on Monday.com. When it does a search it makes an XHR request of the form monday.com/search/cross_board?q=item. This search endpoint is not officially mentioned on the API or SDK. My questions are: Can we make use of an undocumented endpoint like the one mentioned above? Will there be plans to extend the API to allow for a general search? If no to the above questions, can I be cheeky and ask for the graphql and js code that is used to make the search facility work
Hi community! How can i build page like this? https://view.monday.com/4015407657-9dff8a88ed4926a3d6faddc75a4732f9?r=use1&_ga=2.251141956.377695695.1707829531-1570320680.1681387388 Thank you for any help
Hello, I created a new app with an integration feature. I created a receipt using a build-in trigger and a custom action which I created (I put in the custom action a URL of external system as an end point). Now, the app was connected to the relevant board. When I am making a change in the board data, the trigger is fired, but I am getting an error message: “your automation has failed due to an authorization issue” . And from the other hand, I don’t see any activity in the endpoint side… What can cause the authentication issue ?
I’m trying to figure how how to do the below filter using Monday API. I do not see how to filter out results where there is not a match: { items_page_by_column_values( limit: 50, board_id: BOARDID, columns: [ { column_id: "checkbox", column_values: ["1", "t", "true"] }, { column_id: "text1", column_values: ["false", "", null] }, { column_id: "text97", column_values: ["false", "", null] }, { column_id: "date0", column_values: [--IS NOT EMPTY--] } ] ) { cursor items { id name column_values(ids: ["date4", "text", "text4", "text5", "text9", "text8", "date", "text1", "text94", "date0", "checkbox", "text97", "text45", "text90"]) { id value } } } }
Is there a way to create a new workdoc from a template in specific workspace and folder?
via API I can add webhook for this event “change_specific_column_value()” and I can set in config columnId, but how can I set also specific value of this column? Thanks.
I followed the steps for Integrations Quickstart and added the out-of-the box recipe to my board. But it gives the following error on my CLI - “TypeError: Cannot read properties of undefined (reading ‘items’) [0] at Object.getColumnValue (D:\\Monday.com Apps\\quickstart-integrations\\src\\services\\monday-service.js:18:26) [0] at process.processTicksAndRejections (node:internal/process/task_queues:95:5) [0] at async executeAction (D:\\Monday.com Apps\\quickstart-integrations\\src\\controllers\\monday-controller.js:13:18)”
right now clicking on settings in my app item view does nothing. how do i enable the react UI that gets poped up when we click settings.
I found this piece of code in the Github Example app - I have manually added the redirect_uri here, earlier it was not there. Here is the corresponding GithubAuthManager - This one had the redirect_uri from before. Without the redirect_uri on mondayAuthManager, i was not getting redirected back to the backtourl, but when i added it, i was successfully redirected. So why was there no redirect_uri in the out-of-the box code, am I missing something?
Hi , I have attempted various methods to insert a variable as the value for a column, the “text39” column as shown in the Mutation query below, but I have been unsuccessful so far. Any help on this one mutation ($myText: String!) { create_item ( board_id: 415144386, group_id: “emailed_items12303”, item_name: “Subject”, column_values: “{"dropdown99": "7", "dropdown": "", "dropdown9": "18", "text39": " $myText ", "status4": "0", "text26": "staff response to", "additional_info": "This is the addional info", "text27": "Rec_no" }” ) { id } } i have tried "text39": $myText . Didn’t work tried "text39": ${myText}. Didn’t work . Doing all this from postman and variable is defined { “myText”: “Test text” }
I followed the exact steps mentioned in Quickstart - Integrations but it was throwing some errors. I made the following changes in the code and it worked - Changed $itemId: [Int!] to $itemId: [ID!] in the getColumnValue function and changed mutation change_column_value($boardId: Int!, $itemId: Int! … to mutation change_column_value($boardId: ID!, $itemId: ID! Is there any guide in the documentation covering the different types of variables available and which variables use which types? Also, what is the ! after the type of variable? Does it mean that the variable can be NULL?
Hello, Problem: using the “long_text” field in Monday.com with external automations (such as with Make.com or Zapier) is difficult. Often the long-text field can’t be read, for instance, if using the “Search Items in the Monday.com Board by Column Values” and then sending the long-text information to another module. Instead, you need to write an “Execute a GraphQL Query”. Solution: To the information in the long_text field to another module in Make.com, here’s what to write using the “Execute a GraphQL Query”: query { items (ids:{6127608317}) { column_values (ids: ["long_text", "long_text_2"]) { id value text } } }```
[09:28:23.548] DEBUG: * Domain: https://monday-apps-ms.monday.com * [09:28:24.521] DEBUG: api_service res: GET: https://monday-apps-ms.monday.com/api/apps - 200 ? Select an app 10131502 | New App [09:28:27.356] DEBUG: api_service res: GET: https://monday-apps-ms.monday.com/api/apps/10131502/versions - 200 ? Select an app version 10201448 | 1.1.0 | New App | draft [09:28:28.633] DEBUG: push code to appVersionId: 10201448 ⠋ Build asset to deploy [09:28:28.666] DEBUG: Directory path not provided. using current directory: /Users/brett/work_projects/mo⠋ Build asset to deploy › Building asset to deploy from "/Users/brett/work_projects/monday-code-quickstarts/quickstart-go" directory [09:28:28.667] DEBUG: create_archive - Check directory exists directoryPath: "/Users/brett/work_projects/monday-code-quickstarts/quickstart-go" [09:28:28.668] DEBUG: ignore_files_for_archive - Searching for .mappsignore file [09:28:28.669] DEBUG: ignore_files_for_archive - Searching for .gitigno
Hello, I am encountering an issue with my flow in Make which is creating an item on 2 different Monday boards: The item and the reference is created on the first board, but on the 2nd board is created only the item and not the reference. The reference is always empty. Do you know what could be the reason? Maybe something related to permission? Thank you.
Is there a way to securely access third party API from frontend (Monday views/widgets)? I mean, is there some feature from Monday SDK that I allow me to make a request to a third party API from frontend without exposing the API key? This would involve a way to store the API key on app installation and SDK use it on third party api requests. If there’s not, I would have the API key static on my code and use Axios, but this would expose the API Key.
Hi All, To make a long story short, I find Monday.com reporting and 3rd party apps to be incredibly lackluster. The data I want to gather and manipulate is in the Activity Log, but exporting that to excel gives me way more data than I want, so I want to customize what I pull. Which is how I arrived here. Below is my command in linux, minus the key (for obvious reasons). The only return I get is {} from Monday.com instead of the data I want. I know I haven’t put more filters on the command yet. I wanted to see what it pulls first before filtering. Can anyone assist? Does the cookie need to be changed? If so, where do I gather that data? I’m using the example command provided on Monday.com for cURL. curl --location --request POST ‘https://api.monday.com/v2’ \\ –header 'Authorization: ’ \\ –header ‘Content-Type: application/json’ \\ –header ‘Cookie: __cfduid=d4512e647bd3dd90706f5673d6041f7c51618840981’ \\ –data-raw '{“query”: "query { boards (ids: 1476816006) { activity_logs (from: "2022-
Omnidea is thrilled to announce the release of General Caster. This brand new app includes a collection of automation recipes aimed at performing enhanced calculations in monday.com without using a formula column. As of now, we have released two integration recipes. MATH: When any column changes, perform math formula and cast result to column. CURRENCY: When column changes, convert amount from currency to currency and cast result to column. General Caster will be in beta until September 2020. Until then, we will be adding new features and work on bug fixing. Click here for documentation and apply to join our beta program!
Hey, I want to build an automation where I link 2 items that are in 2 different boards and when I update a certain field > the corresponding field is also updated (they must have the same title). What is the best way to do this? I use make.
Hello developers! Have you subscribed to our developers’ YouTube channel yet? We have a wealth of valuable content waiting for you. Subscribe now to access: Informative tutorials and guides Insider tips and tricks Updates on the latest features and enhancements A lot of Dipro’s magic videos you all know and love. Subscribe today!
Triggerly a fully integrated monday.com QR item tracking app is now live in the marketplace! https://monday.com/marketplace/10000413 Empower Your Operations on monday.com with Dynamic QR Codes Triggerly is the ultimate solution for enhancing efficiency in your field activities, manufacturing and logistics operations. Seamlessly integrated with monday.com, Triggerly revolutionizes the way you manage tasks by introducing dynamic QR codes that trigger automated actions. Key Features: Dynamic QR Code Generation: Create dynamic QR codes on-the-fly for real-time updates and flexibility. Automated Actions: Trigger predefined actions such as opening items and changing statuses with a simple scan of the QR code. Customizable Workflows: Tailor Triggerly to your specific needs with customizable workflows that adapt to the unique requirements of your field operations. Real-time Updates: Say goodbye to manual updates and keep your team in the loop and inventory updated with instant updates ensuring
Hello Everyone, I’m thrilled to announce the launch of our latest Capable Koala 🐨 app: the Capable Risk Register 🌟 app, exclusively for monday.com users! In the fast-paced realm of project management, navigating through risks effectively is paramount. The Capable Risk Register app is designed to transform your approach to creating and managing risk registers, making risk management a breeze. Key Highlights: Collaborative Risk Management: Promote team involvement with an app that encourages every member to participate in identifying and mitigating risks. Our tool ensures a comprehensive view of potential risks, making teamwork more productive than ever. Fully Customisable Solution: With Capable Risk Register, adaptability is at your fingertips. Tailor your risk management process with customisable impact and probability levels, risk categories, and more, to fit your project’s unique requirements. Support for Major GRC Programs: Whether you’re adhering to ISO14971, IEC
📣 Hey everyone! We’re thrilled to announce the launch of ActiveCampaign Integration! With ActiveCampaign Integration, you can integrate your marketing and sales campaigns, contact and leads with your monday.com workflow. Using this app, you will easily: Sync your contacts and leads into one centralized location inside monday for easy management. Instantly update your mailing lists and gain meaningful insights from your campaigns. Receive notifications right after your campaign is sent to a specific list. Check out ActiveCampaign Integration now: monday.com: Apps Marketplace You can watch a full demo here Feel free to reach out for any thoughts and collaboration! Cheers (edited) Binatica
Hi all, We’re struggling in implementing monetization for our very first app, and need very basic guidance on how to implement monetization in our code. Can someone help us please? Thank you!
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.