Welcome to the new monday developer community
-
Recently active
Hello everyone, I am trying new api version but it’s not working. I tried old version, it is working like that => I tried new version by following this link. It wasn’t worked. Best Regards, Fatma
Is there any way to programmatically open and close an item view modal/popup from, let’s say, a board view app?
I am facing an issue while using global storage that the data is returning same though the key is different. Suppose if I store a value such as, monday.storage.setItem(‘key#clientId#446487’, ‘some data’); Where as while retrieving monday.storage.getItem(‘key#clientId#446487’) ; // Returning ‘some data’ monday.storage.getItem(‘key#clientId#469720’) ; // Returning ‘some data’ Ideally it should return different data for the second statement as the key is different. Any idea? @rachelatmonday I am not sure what is missing, Can you help me with this matter. Thanks
I am creating the webhook for the particular board by using the Monday APIs; it’s working fine, but the response time of the API call is more than 6 seconds. you can find postman screen (time is 6.79 sec) on the top right corner. is there any way to get the response less than 6 seconds? Thanks in advance.
Hello there, We are currently using the Monday API on version 2023-10. Since two days we are experiencing outage on our internal application because when we try to query our items properties of type date (through the “text” property) the API return an empty string. The issue is happening on all fields of type date. I made the test to query the “value” field and i can confirm that the value is correctly retrieved. I didn’t find any changelogs and/or previous post about this issue, can anyone help please ? Query example: query { boards (ids: XXXX) { items_page (query_params: {rules: [{ column_id: "text3", compare_value: ["person-XXXX"], operator: any_of }, { column_id: "date_montage", compare_value: ["2023-09-05", "2023-09-05"], operator: between }]}) { items { id name column_values(ids: ["_","link","cr_ateur","texte66","status2","status","text3","numbers_2","date_montage","text73","lien_internet","priority","fichier
Dear Monday Team, dear Monday Community, I do not understand why there are pre-configured automations using certain triggers and actions, which are not available for custom automations. Have you not consider separating these, like almost every other automation software does? For example, you can find the pre-configured automation: when a subitem is created send a webhook, but there is no when a subitem is created trigger to be found, when trying to build a custom automation. So the trigger does exist, but we cannot use it, for example to assign to the creator. Or is there a hidden way to achieve something like that?
Hi everybody, i wanted to share a problem i’m experiencing in the last couple of days after switching to the new 10-2023 API version. I had no problems using the new items_page query with most of the company tables, but as i got to the last one(400 items) i get, both inside the playground and the actual program, this error: “errors”: [ { “message”: “JSON.parse: unexpected character at line 1 column 1 of the JSON data”, “stack”: “” } ] which i’m sure is due to a timeout in Monday’s server since the call takes more than a minute and the error disappears if i use a 10 items limit in the item_page node. This is the call i’m making: query{ boards(ids: #){groups(ids:“#”) { items_page(limit:25) { cursor, items { name,id,column_values(ids:[ #,#,#, etc ]) { text,value,column{title} } } where the ids i ask for inside column values are 13. The complexity is around 10000 so again, it shouldn’t timeout. Also note it’s not a slow connection problem since i have the same issue when running the code o
Hi, In the old API, the ‘text’ of the Date field was returned based on the timezone of the user profile: However, in the new API (‘2023-10’), the ‘text’ is returned in UTC: This is causing our calendar app to display all date times incorrectly for users. Is there a way to obtain the ‘converted’ timezone date value without specifically retrieving the timezone from the user’s profile and performing additional logic on our own? Br, YH
Hi all, I have a Make scenario, where a webhook will be triggered by Monday. I keep getting an error saying “Failed to communicate with URL provided.” when I try to connect this through Monday. I want to use this webhook with 3 boards, and don’t want 3 different scenarios so the “Watch Events” won’t work for me. Can anyone help with why this isn’t working? Thanks everyone!
Hi team, Our app name is Bird’s eye view . When a user installs the app, the upgrade alert shows up as below Can this be fixed? Thank you.
Hi, I want to authenticate users from iOS app using OAuth2. Already I have created Monday.com app (id: 10064440) but when I go to App → OAuth → Redirect URLs and I want to add url that has no http / https scheme I am getting an error and I can’t save it. My redirect URL looks like this: “myapp://oauth-callback/monday” where “myapp” is the name of my app (single word). I understand that Monday.com does some verification when a user clicks on “Save Feature” button but my iOS app can’t register for handling “https” scheme because in such case it would handle all links whenever they are clicked (that’s the reason why we have a web browser such as Safari). Instead the app can register its own scheme such as “myapp”. After I login to my Monda.com account and I choose a workspace I am getting a json message saying: “Invalid redirect_uri” because it isn’t specified inside Monday.com app and Monday.com app config page says: “If you pass a redirect_uri in an OAuth request, it must exactly match
My name is Lorentz and I have some questions about using PHP with monday. I am working with the monday API and I have connected my monday with PHP. But know I am looking for a way to count all the data that I have called in. The query that I made to get data is: query { boards (ids: xxxxxxxxx) { groups { title items { name id }}}}. This calls back all the items form all the groups. But I only want all the items from one specific group. And I also want to a piece of code the count all the items so that I have the total amount of items. Can someone give me a step in the right direction?
Hello team, I’m new to GraphQL and monday.com, though I’m trying to figure this query out. Wonder if there’s something I’m doing wrong in my javascript. If this is something simple, please advise: const putInvoiceNumber = ` mutation insertInvoiceJSON($board_id: Int!, $item_id: Int!, $columnValues: JSON!) { change_column_value( board_id:$board_id, item_id:$item_id, column_id:"text9", value: $columnValues) { id } } ` let putInvoiceNumber_data = await queryFetcher(putInvoiceNumber, { "board_id": board_id, "item_id": item_id, "column_id": "text9", "columnValues": {"text":"STA1004"} }, mondayToken) console.log(putInvoiceNumber_data) function queryFetcher(query, variables, key=bearerKey) { return fetch(api_uri, { method: 'POST', headers: { 'Authorization': key, 'Content-Type': 'application/json', }, body: JSON.stringify({
Good Morning, I’ve been experiencing an issue with N8N for the past few days, specifically regarding webhooks. While my workflows can be executed manually, they fail to trigger automatically. To address this, i’ve activated the workflow, set up the webhook to launch « immediately, » and linked it to Monday.com using the production URL. Every time i perform an action on Monday(to trigger the webhook), it’s successfully detected by the Monday.com webhook on their end(visible in the integration activity). However, the command remains pending execution, and nothing happens on the N8N side. However, I did notice a detail within the webhook node on the N8n side : When i select the « Production URL, » it automatically reverts back to the « test URL. » Is this normal ? I’m uncertain. I appreciate your assistance in advance. Best regards.
Hi, I need to generate a custom link to a questionare which should include subitems ID, so that I can later return some info back to that subtask. So, I need to send at least subitems ID, when I change a field in it. Ex - I choose some dropdown option and the info about subtask has to be sent to Zapier for example. Did anyone do smth like that?
@dipro -As I improve my graphQL knowledge and apply that to Monday.com, it will be helpful to know whether Monday.com has a spec-compliant GraphQL server implementation. (helps to know whether there are untapped tools at my disposal). Thanks!
Documentation doesn’t seem to have a way to render the input components like Material UIstyle.monday.com Is there any way to change the font size for Dropdown inputs using apps framework ?
Hi, I have created automation in Zapier thanks to which I create board based on a template and after that, there is a step where I create tasks. Each tasks has it’s list of subtasks and they have to be in the exact order that I entered in Zapier, but in Monday, it’s not as needed. I’ll attach 2 screenshots: one from Zapier and another as a results Screenshot by Lightshot Screenshot by Lightshot. Does anyone have ideas how to restrict the order or what is the issue why it’s so? If I decide to create subitems step by step for each task in Zapier, I will not have to create like 10 more subzaps to realize it as I have a lot of tasks and even much more subtasks for them.
Hello @Matias.Monday , In my application, I am showing the items of all the boards of a particular workspace. but in pagination I am facing problem. Example :- If Limit is 20 then API is returning 20 items of each board but we need only 20 records in a page. API Details :- { “query”: “query { boards (ids: [123456789,1987654231]) { name type board_folder_id items_count items(newest_first: false limit: 10 page: 1 exclude_nonactive: true) {id name updated_at creator{id name}} } }” } Also below is the attached screenshot for your references.
When submitting the form for creating a new app and when submitting new or updated pricing for an app, the forms just say that they were submitted successfully. There’s no email confirmation and there’s no estimated timeline for when monday will reach out or take action on the request. It would be great if an email confirmation could be added along with a rough timeline for next steps. For example, app review took much longer than expected (there was no reply for over a week after submission). Pricing updates seem to be taking longer than I expect as well (it’s been over a week with no indication of the status and no emails from monday). If I knew what the expected timeline was, then it would help tremendously for planning purposes and communicating with my customers. It would also make it so I’m not left wondering if my submission was actually successful. I’m hoping this is something that should be easy for monday to add, since it looks like the forms are built on the monday platform.
How can I access information about file assets version history from a files column through the API? Information like, does a version history exist, what’s the latest version, the previous, a total # of versions, etc?
Hi team! I have two question regarding the submission app to marketplace process 🙂 In the app submission form - What is the difference between Company to Individual developer (What is the difference in the future when it comes to payment from monday.com to the developer? Does the developer should send an invoice as well to get his payment ? there are any more differences?) Monetization form - what is the difference between “Israel entity” to non-israel entity? Does the process of the payment is difference from each other? I will be happy for someone to spread some light on this. Thanks in advanced!
we’ve created a workspace template with multiple boards grouped in different folders and sub-folders. When we use the template the folder structure is lost. Can we avoid that?
Hola! Lo que pasa es que no puedo cargar mi archivo zip para la nueva versión de mi aplicación. No sé si estoy haciendo algo mal o hay algún problema con ello.
I would like to sync my googlesheets with monday.com using zapier. I want to be able to make updates to my google sheets that automatically update my monday.com board. I know with zapier I have to use monday API, but I’m a little confused with how to go about doing that. Has anyone that used this integration before? Or can anyone provide support with using zapier for this integration? 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.