Welcome to the new monday developer community
-
Recently active
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!!!
I am trying to integrate confluence with monday.com but I would like to have the possibility to configure more than one account for the ouath as well as github does, here I put a screenshot of how I would like the problem to appear is that I do not know how to do that screen since I only have the integration for a single account.
I am using the Monday API to extract data from 1 board! The problem I am having is that this board, whilst it has a tiny number of rows, has tons of columns, and so I keep on running into rate limitations. I have tried adding limit and page restrictions, but I need my query to run under 9 minutes if I want to use it on a cloud function. The query is super simple: {boards(ids: ) {items(limit: 20, page:1) {name column_values {title id text}}}}’ Can anyone help? Or is it possible to remove the rate limitations for this query? FYI, I also tried to replace the text with the json values object, but sadly, this does not contain the full information I need for every column. Also, following up on this, I calculated the complexity of my query and its a tiny 34. I don’t know why i am not able to fetch the data, this is an urgent matter can somebody please help?
Can you please help us for below API Details For Items, we are seeing fields/attributes like Creator but not like last updated by. So can you please let us know if there is any field to identify who updated the Items last ? How can we query the list of Items applying the filter on fields/attributes like created_at, creator/creator_id, updated_at There is an API for Querying items by column values, but that gives error while used with these attributes. Example :query { items_by_column_values (board_id: 20178755, column_id: “updated_at”, column_value: “2021-03-23”) { id name } } For updates and Activity log API, is below understanding correct ? For retrieval of updates on Items, For updates performed within Board the Activity log API is to be used and for updates done outside of the Board Updates API should be used" For Activity Log and Updates Query API, we don’t see filter possibility. is it possible to retrieve the updates/Activity log performed after a specific time ? Tha
Hi, we need to integrate our proprietary software with Monday.com workflows. We have an in-house developed real estate management software. We are lacking workflows functionality in our system. We would like to use Monday.com workflows in our system. What is the best way to do this? For example the workflow would be like this: When rent renewal time comes (we need to push renewal times from our system to Monday.com, or Monday.com pulls renewal times from our system) Then we send emails based on templates to the owner and the tenant Thank you in advance, Eugenetwigtech.com
I have used the very helpful quickstart Tutorials (API Quickstart Tutorial - Python – Support (monday.com))as templates and attempted to write Python code to query boards. The querying part works fine. I have successfully posted requests and received sensible data from boards in my Monday.com account. I am therefore sure that the API Key, Url etc for the headers are correct and working fine. Changing the “value” of a “linked board” column, proofs to be elusive. No matter how I tried adapting the examples from the turtorials, I cannot update the linked column’s “value”. On Sep 24, 2020, “Captain” posted a topic with almost identical content for assistance - Change_column_value NOT WORKING in python - FAQs - monday Community. There were zero replies to the topic since then. I hope this is not because the problem has no solution. Below is the code snippet: mutation = “mutation {change_column_value (board_id: 123456789, item_id:1205882003,column_id:"linked_board_col",value:"{"linkedPulseId
Hello everyone! I’m trying to set up a mutation to send the vars what’s json responde to a board here at monday with PHP and GraphQL. Below is the table inside the board with the columns that must be filled. How could I do what I need? Thanks
Hi all, I just heard about the challenge and want to take part but was wondering, is there a more fuller tutorial available of how to build an app for Monday or is it only this Hello World app to get us up and running? I mean for building board views and widgets! Also, I’ve seen previous challenge winners, but it wasn’t clear how those apps integrate into a customer’s board view. They seemed to be isolated apps - just how it appears on the video. I would love more insight into how external apps blend in to the Monday.com boards / items once installed by the user. I am new to Monday as well as being new to the developer portal so apologies if these guides are there! Thanks!
Hi. I am trying to create a item using the following query (with postman): However I get Internal Server Error (500) . What is the problem with these queries? Thanks!
Within the last couple of hours, I’m seeing errors associated with API calls. apiUrl = “https://api.monday.com/v2” <Response [403]> I have verified my token is correct, and the same query works in the API playground correctly. Is there something going on?
Where can I find a complete, current, list of column types for use with the api? For example I am trying to create_column a predecessor or dependency column and I can’t find the correct type value to create it.
Two monday partners Excellent Team by @basdebruin and YvPM by @PedroM joined forces and developed a monday app with several integrations / automations. We get our inspirations to build these from feature request we often see in this community. The current automations are: Vote to Group, this moves an item to a specified group when it reaches a specified number of votes. It is great for gathering ideas and to automatically put the top voted ideas into a separate group in your board. AutoID column. A feature request we often see is to have a unique number for each item on a board (not being the itemid). This automation does exactly that: you can specify the number layout, the starting number and the preceding text and the automation creates the unique id. Great for numbering invoices (INV-1001) or ideas (IDEA-001) or anything else you can think of. The frontend of these apps are created with monday apps and the necessary backend is developed in NodeJS and runs on a dedicated webs
I have implemented a custom trigger and action for a Monday.com Integration After subscribing, Monday.com will send a request to my server with payload containing subscriptionURL for adding a new item to the board The url looks like https://api-gw.monday.com/automations/apps-events/board_id After sending a post request to the above api it returns {success: true} if everything went correct and new item is added to the board. But for some requests to this url even when no item is added to the board it still returns { success: true}. This is very difficult while debugging because there is no clue what went wrong
Hi, I build an integration recipe with custom action block that sends dynamic mapping fields. this is the recipe: this is the action block: and this is the response fullorder field definition URL: [ { "id": "ORDNAME", "title": "הזמנה - CO", "outboundType": "text", "inboundTypes": [ "text" ] }, { "id": "ORDSTATUSDES", "title": "סטטוס הזמנה - CO", "outboundType": "text", "inboundTypes": [ "text" ] }, { "id": "DETAILS", "title": "פרטים - CO", "outboundType": "text", "inboundTypes": [ "text" ] }, { "id": "WIN_PIAPPDATE_DT", "title": "תאריך אישור PI לספק", "outboundType": "date", "inboundTypes": [ "date", "date_time" ] }, { "id": "DETAILS2", "title": "פרטים2", "outboundType": "text", "inboundTypes": [ "text" ] }, { "id": "BLABLABLA", "title": "בלה בלה בלה", "outboundType": "text", "i
Hi my dates of workflow on a part of my board have changed to years in the future (2560 and further) i cannot change them back, anybody know how to fix this or get in touch with monday on this subject - no responses yet from monday since this morning-
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.