Welcome to the new monday developer community
Discussions category for everything related to app development on top of monday.com
Recently active
Hello! Would it be possible to configure the AI configuration for columns when the action is custom, and emails (example1@gmail.com; example2@gmail.com) are extracted from a reflection column (Text), and when passed through AI, it uses the separation of ; since it doesn’t have… it only displays the emails separately and with a space, and this way the emails aren’t sent to all recipients.
We’re excited to announce that our beta group is now public for testing a new feature: the Open Status Column Picker and Dropdown. This feature lets you: Create custom status columns that users can select from the column store. Customize the status dropdown interface when users interact with a status cell If you’d like to try it before its official release and provide feedback, please fill out this form, and we’ll add you to the beta.
I have a fill forum that contains drop down items, is there a way to convert my drop-down items into a notification or note that is automatically left inside of the update’s column once the fill forum is complete and the item is submitted to the board, so everyone can just check the updates column only?
Hi Team - is there a limit for creating Subitems per items for Enterprise account? at the moment I can create only 500 Sub items per item by Calling Monday APIs from our app, also when it reaches 500 subitems I see this error which prevents from creating further subitems, the error itself is bit misguiding though error - `{“data”:{“create_subitem”:null},“errors”:[{“message”:“CellLimitExceededException: Validation of column values failed: Exceeded cell limit.”,“locations”:[{“line”:1,“column”:10}],“path”:[“create_subitem”],“extensions”:{“code”:“CellLimitExceededException”,“status_code”:422,“error_data”:{“message”:“CellLimitExceededException: Validation of column values failed: Exceeded cell limit.”,“limit”:500,“limit_type”:“count”,“column_type”:“subtasks”}}}]} Thanks
Hello Monday.com Community, I am currently working on integrating Monday.com with our system using the GraphQL API. I need to update the Button Column Label programmatically, but I couldn’t find a direct way to do this in the API documentation. I need to update the Button Column Label programmatically to show meaningful text instead of the default “Click Me” label.
HI, In Administartion->Connections I have several app connections for deleted boards. Shouldn’t have been deleted when I removed the boards ? When i go at the 3 dots at the end of the line a message says “These actions are not available for app connections”. How can i delete these connections ? Is there an api mutation to delete them ? Thanks.
each time when i try to get a new version to my app im countering the error- “New app version creation has failed”. what could be the problem? i dont have any other versions live i dont have any other draft version i turn off the call for my app the app is live and was used nothing change just want to add another feature (want to add the “call summary” activity in a new column in my board. tought i can do it only trough app & code )
Hey Community, We have limited slots available for focused discussions on: Boosting App Visibility: Let’s talk about strategies to attract more users. Optimizing Your Listing Page: Refine your apps’ pages on the marketplace for maximum impact. Your Feedback & Needs: Let’s talk about what you expect from the marketplace, API and apps framework. Let’s collaborate to drive your app’s success. Secure your 1:1 spot here
Hi all, I’ve been working on an app with integration actions and I’ve been struggling to find a comprehensive description of the format of the Authorization header passed through. This would come in very helpful as the app needs to validate the subscription of the account performing the action but there is no defined subscription field in the example format here despite me knowing it exists from testing. Is there more comprehensive documentation on the valid format of the JWT anywhere?
I have a Monday Code hosted app that I’m working on implementing webhooks for, but I’m having an issue getting a shortLivedToken. This code handles the webhook POST call: import { NextResponse } from 'next/server'; import jwt from 'jsonwebtoken'; import { headers } from 'next/headers'; export async function POST(request: Request) { try { const headersList = headers(); const authHeader = headersList.get('Authorization'); const token = authHeader!.replace('Bearer ', ''); const clientSecret = process.env.CLIENT_SECRET; const decoded = jwt.verify(token, clientSecret!); const accessToken = decoded.shortLivedToken; } catch (error) { // handle error } } and decoded evaluates to: { "fields": { "dat": { "structValue": { "fields": { "client_id": { "stringValue": "b11**********************", "kind": "stringValue" }, "app_version_id": {
I’ve run into a problem with my app, where I update items on multiple boards using change_multiple_column_values mutation. My query is working, apart from some boards / items, where I get UserUnauthorizedException - though I am able to access the board in question and edit items on it by hand. This error is also thrown when using token of someone with admin rights. I am a programmer and not an avid Monday user myself, so maybe I am missing something obvious, like a setting on a certain item or column? How would I check that? What else should I check?
Hello, I’m exploring integration options and wondering how to integrate Monday.com with Outlook Tasks. Where can I find information/guidance on this? Thank you, Anat
Hello 🙌 As I said in the title the issue is that I don’t get the data I requested from the operations that executed successfuly. I only get errors if at least one operation fails I’m not sure if this is a mistake on my end since it’s the first time I’m working with graphQL I’ve tried it in both the playground and in my codebase Here’s my query mutation { mutate1: change_multiple_column_values( item_id: 8152384251 board_id: 8109281540 column_values: "{\\"name\\": \\"ASD\\", \\"status\\": {\\"index\\": \\"0\\"}, \\"date4\\": {\\"date\\": \\"2025-02-09\\", \\"time\\": \\"20:03:26\\"} }" ) { id name } mutate2: change_multiple_column_values( item_id: 8152384251 board_id: 8109281540 column_values: "{\\"name\\": \\"ASDASDASD\\", \\"status\\": {\\"index\\": \\"0\\"}, \\"date4\\": {\\"date\\": \\"2025-02-09\\", \\"time\\": \\"20:03:26\\"} }" ) { id name } delete2: delete_item(item_id: "5242344") { id } delete3: delete_item(
I can pass url as a parameter when creating webhooks, but when querying for webhooks the url property is not part of the schema. This is incredible bad. What if I need to recreate certain webhooks with a different endpoint URL? I could delete all webhooks but might unintended delete webhooks for other integrations as I can’t filter for only those webhooks that contain the wrong URL. This information is visible through the UI, but I can’t get the same info through the graphql API. Why not?
I wonder who is actually the user_name/user_email contained in the app webhooks we receive? What’s his role? I know he is the user who installed the app on the account, isn’t he? Is the user who purchases a subscription? Why does the user change? When we receive a app_subscription_renewal_attempt_failed webhook, we contact both the user who originally purchased the subscription and the user contained in this last event. Often they are different users. They usually reply they are not the right person to contact. Thanks for your help in explaining me this feature.
here is my code to create from xl file `ts import * as XLSX from ‘xlsx’; // Configuration const API_TOKEN: string = process.env.API_TOKEN || ‘’; const WORKSPACE_ID: number = 1634278; // Headers for API requests const headers = { Authorization: API_TOKEN, ‘Content-Type’: ‘application/json’, ‘API-version’: ‘2023-10’, }; interface ExcelColumns { [key: string]: string; } interface ColumnMap { [key: string]: string; } // Default column type const DEFAULT_COLUMN_TYPE = ‘text’; // Custom column type mappings (if needed) const CUSTOM_COLUMN_TYPES: ExcelColumns = { ‘Task Name’: ‘text’, // Supported Desc: ‘long_text’, // Supported ‘Due Date’: ‘date’, // Supported Assignee: ‘people’, // Supported Status: ‘status’, // Supported }; // Status mapping (customize based on your workflow) const STATUS_MAP: { [key: string]: { index: number; color: string } } = { ‘Not Started’: { index: 0, color: ‘#ff0000’ }, ‘In Progress’: { index: 1, color: ‘#00ff00’ }, Done: { index: 2, color: ‘#0000ff’ }, }; async fun
Can someone please confirm if item duplication through API always create item in same group as base item or not? One of our customers is saying her duplicate item (through our app) are not going into correct group. We assumed that duplication creates item in the same group but want to confirm whether this is the case or not ?
Hi, As of mid day GMT yesterday, the settings pane for the Dashboard widget app that we have developed for the Marketplace (Speedometer) is completely blank. I opened a ticket with Dev support yesterday, but have not received a reply yet. This is very troubling as my users can’t edit settings, but even worse, new downloaders immediately uninstall since they can’t seem to figure out how to work the thing… Anybody else notice this issue? Monday Dev Support - any eta on when this issue will be resolved? Thanks! Steve Escott AllDayIT
Hey hey - Before October 2024, users of a custom form a developer created were able to fill out the form, submitting the form would cause a chain reaction of updates with lots of boards. When I started working on this project, the only way to submit this form was if you are a board owner. This was not the case previously. We don’t want everyone to be a board owner because that will give employees too much accessibilty to change whatever they want (likely by accident). Was there a change in Monday.com that caused board owners to be the only ones who can make changes? Can someone here help me understand how I might be able to manage permissions better? This is the error we are encountering for all the non-board owners: { "errors": [ { "message": "User unauthorized to perform action", "locations": [ { "line": 1, "column": 10 } ], "path": [ "cr
Are you developing new apps for a 2025 release? This opportunity is for you! Get your app, or app idea, ready for success on the monday.com Marketplace! Join our Pitch Your App initiative and present your app’s features, benefits, and use cases to monday.com’s product marketing and engineering experts. We have two slots available for a Pitch Your App event in March 2025. Following your pitch, our team will provide up to 15 minutes of valuable feedback, offering insights, ideas, and advice to enhance your app’s marketability, utility, and popularity. This is just one way we’re supporting monday.com app developers. Here’s how it works: You’ll have 5-10 minutes to pitch your app, using a concise presentation or pitch deck (approximately 5 slides) as a visual aid. Be clear and focused, highlighting only the most critical aspects of your app. To maximize your pitch, address these key points: Problem Solving: What problem(s) does your app solve? How does it address these challenges? Diffe
Hi, I am a bit confused as we had a perfectly functionning API setup. We never specified the charset to be used and always got appropriate results. However,as of this week (02-17-2025), API calls on say, item names, improperly return accents (say “é” as “é”). Our setup hasn’t changed at all in several months. Does anyone have any insight on to how to resolve this ? I tried using the charset=utf-8 in the API call, but results are no better… Thanks!
Hi Monday support. I am using the Monday API to pull data via Python. I am using the following code: def monday_fetch_and_process_data(api_key, board_id): # API Endpoint url = “https://api.monday.com/v2” # Query to get items from a specific board query = ''' { boards(ids: %s) { items { name column_values { title text } } } } ''' % board_id # Headers headers = { 'Authorization': api_key, 'Content-Type': 'application/json' } # Make the API Request response = requests.post(url, json={'query': query}, headers=headers) data = response.json() Everything has been running smoothly until this morning, where I get this error when running the code: API Response: {‘errors’: [{‘message’: “Field ‘items’ doesn’t exist on type ‘Board’”, ‘locations’: [{‘line’: 4, ‘column’: 9}], ‘path’: [‘query’, ‘boards’, ‘items’], ‘extensions’: {‘code’: ‘undefinedField’, ‘typeName’: ‘Board’, ‘fieldName’: ‘items’}}], ‘account_id’: 4064623} I would greatly appreci
For context, I am creating a template that looks like; When a new item is created in board, create a task in reminders and sync all future updates. For this I need to create a trigger; When a new item in board is created in monday.com This trigger will create webhooks to for item creation and column updates And a new action; create a task in reminders and sync all future updates. This will create the task in the external app I would like to map an item in monday.com to a task in the external app. Currently I am having my trigger output an itemMapping and setting this as the source entity of the task in the action. I suspect the format of the itemMapping is incorrect though as the task data is not being populated when it is passed to the action. Ideally i’d like to output an itemValues object from the trigger, however this does not seem to be an option currently. I’d like to know what the format of the itemMapping entity should be so I can output it correctly. Thanks!
Hi Team, I am not able to create new version of my app (Special Automations - 10182838) anymore. Kindly help in this regard ASAP. Please watched attached loom video (monday - Apps - 5 February 2025 | Loom) for more context. I have raised same request 2 times earlier through the support form (https://support.monday.com/hc/en-us/requests/new?ticket_form_id=13855862562962) and once through CEOs email, but still this issue has not been solved. It has been around 1 month now (I raised this on 5th Feb first), now customers have stopped believing me when I say that this is issue from monday end. This issue is causing frustration for me as well as customers as new automation requests are piling up. Please resolve this ASAP, why are monday developers not taking up this up ? Thanks
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.