Welcome to the new monday developer community
Discussions category for everything related to app development on top of monday.com
Recently active
I am trying to create an application which require google authentication
Hi Monday! I am looking for a way to collect the sessions recorded by the time tracking column in the items. The proposal is to be able to export it to Google Sheets as a big table contain all the sessions with additional data I will add. Currently, I am trying to leverage the new API with GraphQL in order to export the sessions each user did and unable to do that. This is the query I am sending: { boards(ids: [MY_BOARD_IDS]) { id name tags { id name } items (ids: [MY_TRACKED_ITEM_IDS]) { id name column_values (ids: ["time_tracking"]) { id value } } } } And the response doesn’t contain the sessions as can be seen on the GUI. The value node contains the following information. { “running”:“false”, “startDate”:1597066904, “duration”:18720, “changed_at”:“2020-08-10T18:53:44.830Z” } What I was expected to see is an array of sessions with the f
Hey, would love to be able to use them in my board view. Would be great if they could be included in the design system icons. Any other way of getting them in the meantime before Sunday’s contest deadline? Thanks, Ronen
I build my app and then installed that in my account. Now, when I go to my dashboard and try to add the app, its not there at all. What could I be missing?
Hi Team! I’ve been trying to retrieve items by their dropdown column values but keep getting an empty return when doing so. This happens when searching through my application (written in Python) or using the Graph iQL platform. I seem to remember reading somewhere that searching via dropdown column values is not possible but I can’t find that post - please could someone confirm this for me? I’d be super grateful 😃 For reference, I’ve included the GraphiQL query I’ve written, which returns 0 results: { items_by_column_values (board_id: 123456789 column_id:“device0” column_value: “{"ids":"[2]"}”) { name } } I look forward to any help that can be provided!!
When i create a new item via the api, it says my userid created the item, can it say my app created it (called SkyTrax) instead my personal id and email? as a developer, i don’t want these email notifciations to go out as being from me as that will confuse the users (and they will reply to me and who wants to interact with… users… ;-).
Hi, I am developing an app for sending sms. I succeeded in sending the message, but there is an issue. The field item value was not fetched from the message and is recognized as a string. Can anyone help me?
It happens regular that I open my open from the integrations page and the recipes don’t show up (seeing a white empty screen). Just trying it again (sometimes 3 times) and the recipes do appear. Anybody else seeing this behavior?
When attempting to add Monday.com GraphQL API as a remote schema I get a not Authenticated response… as expected. From a potential marketplace application development perspective it would be great to load the schema remotely without an access token. Have setup that uses Hasura and correlates multiple data sources to Monday pulses from different GraphQL sources. Each subsequent request will come from a different authenticated user, so the access token is not available during the initial setup.
when I try to use monday oauth domains like “app.domain.com” returns error when I put them in the redirect URI. also had problem with domain.com/app. but domain.com works. Is there a way to solve this problem?
I have an app with a trigger “When column changes” and a custom action. The first thing I do in the custom action is checking if the new column value already exists in the specified column, using the query items_by_column_values. The weird thing is that sometimes it returns the itemId of the item that has been changed, but at other times it does not. Does anyone know if the trigger fires before or after the column value has been changed, currently it looks it is arbitrary (sometimes the new column value is found [like the trigger is fired after the column update] and sometimes it is not found [like the trigger is fired before the column update]) In my code I use await to wait for the promise, so my code is not asynchronous. It is very well possible that monday itself is asynchronous and you can’t rely when the trigger is fired. Any thoughts?
Is there a way to mass download files using an app? I’m working with a team of designers that wants all the images downloaded and organized by folders according to what row the images belong to. I wrote a command-line script that does this, but the designers are very non-technical, and they would prefer not to have to work in the command-line even though they would just have to run one command. Is there a way to do this with the App?
What date format is "2020-08-20 16:43:14 UTC"? It is found in boards{items{updated_at}} and differs from the ISO-8601 format in boards{updated_at} and elsewhere in the data. Javascript seems ok parsing it, but I’m just doing due diligence to make sure. example graphql: { boards(ids:0){ name updated_at items(ids:0) { name column_values(ids:"date") { id title value text } updated_at } } } response:
Hi there, In app settings is it possible to let user select the column values which user is interested in seeing on dashboard widget.
mutation { change_column_value (board_id: 20178755, item_id: 200819371, column_id: "status", value: "{\\"index\\": 1}") { id } } https://monday.com/developers/v2#mutations-section-columns I have a small doubt, in the value json, what exactly is index. Is it the column name or some other property? I would really appreciate some explanation. Thank you.
Hi, I have a question. I have 2 boards: Board #1 - empty board Board #2 with predefined list of items. Board #1 has the Link field which links items from Board #1 with items from Board #2. I want to create the following integration recipe: When item is added to Board #1, assign the selected item from Board #2 to specific column of this added item. I did it partially, but I don’t understand how to allow users select specific item from selected Board in the Action
This is a question to the monday team - and can I have the same id for board and board view or are they guaranteed to be different? Thanks, Ronen
Hello, monday community. I was looking at the code for welcome-app integrations. In text-transformation-controller.js for inboundValues we receive const { boardId, itemId, sourceColumnId, targetColumnId, transformationType } = inboundFieldValues; how should we change the value of transformationType from the board. It is by default UPPER_CASE. Link for code.
In a board view app I need to add a settings field (dropdown) which gets populated from my react app. Is this possible? Any hints are welcome 🙂
Hi, I’m trying to build an automation that will create a new item when it is triggered. The GitHub integration has a great input field: You can click on the blue + button and then you can use supported fields from GitHub: When I click on the input field from my own automation it shows this: How can I create an input field like the one the GitHub integration uses? Thanks in advance for your help!
Hey, I’m getting an invalid signature error when verifying the session token my board view gets. The token looks ok when I’m logging it. I also regenerated the signing secret, didn’t fix it. Here’s a summary of my code: import jwt from "jsonwebtoken"; import mondaySdk from "monday-sdk-js"; const monday = mondaySdk(); async function init() { const sessionToken = (await monday.get("sessionToken")).data; const MONDAY_SIGNING_SECRET = "My signing secret (in client for debug purposes only)"; const sessionData = jwt.verify(sessionToken, MONDAY_SIGNING_SECRET); }
I am developing an app the topic is food, So, how can I get color palette which is eye catchy and attractive. If anyone suggest it will be really helpful. Thank you!!
Hi everyone. I want to link AWS lambda to Monday.com webhook. i am beginner so any help would be useful thanks! current codes (python3.7) import json def lambda_handler(event, context): challenge : event[‘challenge’] if 'challenge’in event: return { ‘statusCode’:200, ‘body’:json.dumps(challenge[event:‘challenge’]) } else: pass while these codes passed in aws, i can’t seem to connect to Monday.com webhook. any help would be great;; thanks!
I’ve followed the step-by-step demo for the Integration Quick Start (from here https://monday.com/developers/apps/quickstart-integration/) After following the entire guide when the Action executes, I get a “POST /transformation/transform 502 Bad Gateway” error on my dev server. Any insight on why the problem is would be much appreciated
Hi ! Im developing a monday app in which I try to create a new group and items in the board … Im using monday sdk , while sending : mutation { create_group (board_id: (boardID), group_name: 'new Group') { id } } I get "Graphql validation error "… before that I sending several querying and its works fine . I tried to run it with all the permissions available for the app hope someone has an answer 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.