Welcome to the new monday developer community
-
Recently active
Hi, I create items in Monday using the create_item GraphQL mutation but I can’t find a way to assign multiple users to the item. Is that possible using the API?
Hi there! 👋 Today, we issued a new fetaure of our QR code App. You can now manage your inventory with QR codes. When you create an item, a associated QR code is created. You can place it on the corresponding racking. Each time a worker scan the qr code, he can update the stock level of the item, without any app, just with a simple virtual keyboard. You can activate geofencing to protect yourself from outside. Read the doc
Greetings everyone! Well folks I have an array in PHP $ arr = [“a”, “b”, “c”]; And I wanted to know which type of column is most suitable for placing the array values in a monday column inside a board Thank you very much for reading and if possible answer me = D
Hi, in my integration I want to replace the item fields that can be selected in a message of a recipe. On my board I have one date column called Date and one dropdown column called Effort. When I select these in a recipe’s message, I get {item’s Date} and {item’s Effort} as text. But my custom action receives this as {pulse.date4} and {pulse.dropdown} in the provided message (the pulse renaming is not the problem). To get the approriate values from the board I query the item’s column_values and find that the title is exactly that what is shown as selected fields. But it is hard to correlate this in my custom action. It seems that something like the type of the column is given, but what happens if I use more than one column with the same type on the board (I didn’t check that yet)? Also I am wondering about the 4 in the date field. As a side note, it seems that the representation of the autopopulated fields in a recipe’s message have change since yesterday: before it was like {item.pers
Hi Monday community, I am looking for a table component in the Monday component library similar to the one from the documentation from this link (see image below) Where can I find something to create a board view with this table component? Is there a line chart component that Monday can offer (see image)? If not, I would like to ask if anyone has suggestions on UI Kit libraries to use for creating Monday board views. I’ve used Material UI before. Thank you for your time!
Why isn’t it possible to adjust the item name from the API. It seems like a very basic feature that is missing.
I’ve create a new integration app, which works fine using a local tunnel to my dev machine. When the functionality is ready, I deployed the functionality to Google Firebase functions and updated the Monday.com app URL to invoke, so it points to the firebase function instead of the local tunnel. After changing the URL, nothing happens any more. On the firebase-side, I don’t even see an invocation. When testing the firebase URL (by POSTing to it), I get a decent error (that the Monday.com JWT token is invalid - I put a dummy value in the request body, so that’s expected). But from Monday.com, it’s not even invoked. Questions: Is there a log viewer to see if an app gets invoked, and to see possible errors? Could the cause be that the URL is too long? The URL is https://europe-west1-xxxxx-xxxxxx-xx-xxx-calendar.cloudfunctions.net/SyncToGoogle (the actual URL has been changed to use 'x’s in this post)
Hi, I am trying to build a custom integration recipe where if I update a column’s value in a board where I am going to apply an integration can also change the value in other board I want to(provided in recipe sentence). The problem is that I want to make it a generic one so that we can choose the column of the other board from our own choice(just like we give it in a recipe sentence). And in the later column we are getting the list of columns of the board where we are applying the automation not the one we’ve chosen from recipe sentence. For that , we should compelled the user to chose the board first so that it can load all the relevant columns. Is there a way to achieve this? A quick help would be appreciated…!!
Hi, I am developing an app with integration feature. And i would like to access Mirror column via recipe. But i am unable to access it. If select “linkage Column” or “Column” when creating a custom action and then go to recipe and add the recipe to the board. When though board1 is Connected to another board2 and it has 3 mirror column. I am the owner of both these boards. But when i try to add recipe the column selection dropdown do no show the mirror columns. It shows all the other columns except mirror column. What could be the issue? Can anyone guide me on this.?
Hi, how can I create a GraphQL Query that will return a single Group by its title rather than its id? I can use the playground to get all Groups and I can also get a single group via its id, but id’s are randomly named and so I want to get a group by its title which I create and thus can control. I though I’d be able to do something like this … // fails { boards(ids: 000000000) { groups(title: “nice_title”) { id title } } } but if I’m reading the documentation correctly (https://monday.com/developers/v2#queries-section-groups) then the only thing I can do is this … // works { boards(ids: 000000000) { groups (ids: “some_random_title”) { id title } } } Or get all groups and use code to iterate the groups to find the one I want … // works - gets all groups for my board { boards(ids: 000000000) { groups { id title } } } I would prefer not to do this for performance reasons. I’m certainly no GraphQL expert so any help is appreciate, Thanks!!!
I have developed a custom integration (with node JS ). my integration calls a custom action when a column value is changed by the user. I want to display a message to user when the custom action success (or red message if my custom action was failed.) Please note, I don’t want to create notification in the notifications area!!! I want to show something like this (without the undo button): Is it possible?
Hi monday.com community! We are happy to announce a new integration between monday.com and Bitbucket. This integration for Bitbucket® allows you to connect Bitbucket issues (not Jira issues) and monday.com items. Improve collaboration between your business and developer teams by working more efficient! As of now, the app includes the following recipes: When an item is created in monday.com, create an issue in this Bitbucket repository from this Bitbucket workspace When a status changes to something, create an issue in this Bitbucket repository from this Bitbucket workspace When an issue is created in this Bitbucket repository from this Bitbucket workspace, create an item and sync future changes from Bitbucket When a commit of this Bitbucket repository from this Bitbucket workspace is pushed to this branch, create an item When a commit of this Bitbucket repository from this Bitbucket workspace is pushed to this branch, create an update in this item Read our documentation or install
Hi All, A customer of ours wants to have a script that removes an employee who leaves the company from all his accounts like email, and other software tools. is there a way to remove a user from a monday.com account using the API? Thanks in advance. Yossi
Hi, I get the “Recipe Creation failed” when trying to create the following recipe: If remove the part and {column,columnRejected} to {value, valueRejected} if Not recipe is created successfully. Are there any limitations for recipe text length?
Hello everyone, We are planning to hire a software developer to help us build some apps for our monday. I need help understanding what type of experience and programing languages should this person have in order to be successful developing monday apps. Thanks in advance
@dipro Hey, just wanted to ask a question about your response on this thread. Custom Trigger tutorial wrong? monday Apps & Developers Hey everyone, wanted to close the loop on this. Last week we did indeed find an error in our documentation about custom triggers and fixed it. Specifically, the documentation had the wrong JSON response body and did not include any information about authorization. Here’s the section we updated, if you’re interested: [image] You said that the response body of the POST request to the webhookUrl would include the itemId if the created item. All I’m receiving back from this endpoint is { success: true }. Is this expected behavior? Cheers, Chris
Hi, I currently work on an integration that uses the API v2 to get some item fields in a custom action. But the query returns different response depending on the trigger that is used. If I use a trigger that directly calls the action, like ‘when status changes’ or ‘when an update is created’, then the query with the provided itemId is successful. But when a time trigger, like ‘scheduled trigger’ or ‘when date has passed’ fires and calls the same action, then the query with a valid itemId fails with message ‘Variable itemId of type Int! was provided invalid value’. Any ideas what is going wrong here? Thanks, Marcus
Hi, I am developing a new integration and need to extend the OAuth scope of it. So I created an new major version of my app and added the needed scope. For testing I deleted all old versions from my board and selected a recipe of the new version and added it to my board. But when the integration is triggered, the sent token to access the monday API does not grant the new scope. I did not touch the recipes themselves. How can I handle that?
I am new to monday apps framework and building a item view. I am trying to upload a file with monday sdk and using this code, const query = `mutation add_file($update_id:Int!, $video: File!) { add_file_to_update(update_id: $update_id, file: $video) { id } }`; monday.api(query, { variables: { video: new File([blob], "video.mp4", { lastModified: new Date(), type: "video/mp4", }), update_id: 7894482, }, }); And this is the request i see going through in chrome developer tools and failing with 500 error. Can someone help me with this ?
Hi, We are building a monday app (Board view to be precise) and need to access our secured backend REST API. I’ve gone through the getting started parts of the view & widgets here and I couldn’t find any reference to my use case. Any ideas? Thanks.
I´m trying to get the time tracking column details with the query in the post [Released!] Accessing time-tracking log via the API - #36 by dipro, but I don´t know how to do it in Power BI. Could anyone help?
I want to add a additional file source in the below list. Would it be possible to do it with monday Apps Framework ?
This is my Javascript: const query5 = 'mutation {create_column (board_id: 1163502014, title: "ding", column_type: status, defaults: "{\\"labels\\":{\\"0\\":\\"Working ffffonit\\",\\"1\\":\\"Done\\",\\"2\\":\\"Stuck\\",\\"14\\":\\"\\",\\"12\\":\\"\\",\\"7\\":\\"\\"},\\"labels_colors\\":{\\"0\\": {\\"color\\":\\"#fdab3d\\",\\"border\\":\\"#E99729\\",\\"var_name\\":\\"orange\\"},\\"1\\":{\\"color\\":\\"#00c875\\",\\"border\\":\\"#00B461\\",\\"var_name\\":\\"green-shadow\\"},\\"2\\": {\\"color\\":\\"#e2445c\\",\\"border\\":\\"#CE3048\\",\\"var_name\\":\\"red-shadow\\"},\\"14\\": {\\"color\\":\\"#784BD1\\",\\"border\\":\\"#8F4DC4\\",\\"var_name\\":\\"dark-purple\\"},\\"12\\": {\\"color\\":\\"#FF158A\\",\\"border\\":\\"#E01279\\",\\"var_name\\":\\"dark-pink\\"},\\"7\\": {\\"color\\":\\"#579bfc\\",\\"border\\":\\"#4387E8\\",\\"var_name\\":\\"bright-blue\\"}}}" ) {id}}'; fetch("https://api.monday.com/v2", { method: 'post', headers, body: JSON.stringify({
Hi, Is would like to extract some information and store it in an item that I’ll create through the API. The problem is - I want to save some metadata that isn’t relevant to the users. I thought of saving it in a column and then have it hidden from view. My question is - can I hide a column through Mondays API?
Hi!!! Is there a way (using API for example) to export all the items from one board into a processable format (csv, excel, txt etc …)? Actually we have an integration process that use GraphQL queries to get all the items and generate the report but we have a lot of problems with the rate limitations. Any suggestion, alternative approach is welcome!!! Thanks in advance!!!
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.