Welcome to the new monday developer community
-
Recently active
Hi, how can the actual values be pulled with an API query rather then just the ids of dropdowns or other similar column types? Thank you
Hi. Why no values are returned for an API query where values were calculated by formulas? I pull data from a board and there are some columns of type ‘formula’, so no data is returned for them Thank you
Hi, I need to present an error message to the user when certain error conditions happen while an integration is runninng. I tried with posting severity errors as described in the error handling document and in fact i get the notifications but only in the notification center. I don’t get an alert when the condition happens. Is this expected or not ? Is there any way in order to trigger an alert to be presented for the user to take action ? Thanks in advance.
GraphQL API
Hi, mates. I can fetch items with only non completed status with my query. This is strange as I have no rules applied for the items_page object in my query. What might cause this behaviour? query { boards(ids: 2360058426) { items_count items_page { items { group { title id } name state subitems { name column_values { column {title id} value type } } } } } }
Hi, I am trying to use components from Monday’s Vibe design system (https://style.monday.com/), but I am a bit confused. In some examples for a handful of components I see references to cx and styles, but I don’t know how to import these in my React App.js file. For instance for the Text component I see the following example: <Text element="div" className={cx(styles.smallRectangle)} style={{ backgroundColor: "black" }} align={Text.align.CENTER} color={Text.colors.FIXED_LIGHT}> Fixed light </Text> I am able to import Text but I don’t know how to import the functions or components for cx(styles.smallRectangle) Could you please help. Thanks.
I just built an integration app, and I want to get a search string from the search box of the Map App. Please refer to the images below. If there is an automation something like this, then I can get a search string from the search box. (i.e, when the search string of search box changes, then …make some action…) I hope this is possible. I look forward to hearing good news from you. Thank you
Hi all, I would like to customize the current Kanban view to by creating my own app. Are there code templates of the current board views? There are only 3 templates to select from when creating a new feature in my app and working with the existing Kanban view code would be significantly helpful.
Hey guys, My script/query has been running like clockwork for the last couple of weeks without any issues. It’s a basic query with some filters, applies a sum and spits out the total number. In the last few days (I cant exactly say when as I’ve been off from work), it’s been returning 0 value. A bit of debugging shows a date filter in line 6 to be the culprit. The whole query looks like this: { boards (ids: ***){ items_page (limit: 500, query_params: {rules: [{column_id: “group”, compare_value: [“topics”], operator:any_of} {column_id: “date2”, compare_value: [“$$$blank$$$”], operator:any_of} {column_id: “project_area”, compare_value: [“Farleigh”], operator: not_contains_text} {column_id: “status0”, compare_value: [5], operator: not_any_of} {column_id: “status_25”, compare_value: [1], operator: not_any_of} {column_id: “status_25”, compare_value: [10], operator: not_any_of} {column_id: “status_1”, compare_value: [15], operator: not_any_of} {column_id: “status04”, compare_value: [3], o
I’m using GraphQL to get a list of all items associated with a board. It is working well. { boards(ids: 5193886955) { name items_page(limit: 100) { cursor items { id name state } } } } Returns: { “data”: { “boards”: [ { “name”: “Technology Project Portfolio”, “items_page”: { “cursor”: null, “items”: [ { “id”: “5699277284”, “name”: “Oracle TMS Program”, “state”: “active” }, etc, etc, etc I also need to return the current value of “Stage Gate” for each item. When I view the projects/items in Monday.com app, one of the columns listed is stage gate. I can’t seem to find a field I can add to the GraphQL request to return the stage gate. Any help would be appreciated.
Hi there, Just wondering if there is an easy way to return all tasks /items that have a specific priority value (ie ‘blocker’) across all boards and workspaces we have access to via the API. We have hundreds of boards so looking to avoid querying by individual board. Thanks
Hi - I am not an experienced query writer and just need my favourite query updated to use the new API. Can anyone update this one for me? Ta! let Key = “”, Board = “”, Source = Web.Contents( “https://api.monday.com/v2”, [ Headers=[ #“Method”=“POST”, #“Content-Type”=“application/json”, #“Authorization”=“Bearer " & Key ], Content=Text.ToBinary(”{““query””: ““query { boards(ids: " & Board & “) { items { id, name, updated_at, group { title }, columns: column_values { title, text } } } }””}”) ] ), Data = Table.FromList(Json.Document(Source)[data][boards]{0}[items], Record.FieldValues, {“ID”, “Title”, “UpdatedAt”, “Group”, “Columns”}), #“Monday” = Table.FromRecords(Table.TransformRows(Data, each List.Accumulate([Columns], [ ID = [ID], Title = [Title], UpdateDate = [UpdatedAt], Group = [Group][title] ], (state, current) => Record.AddField(state, current[title], current[text]) ) )) in #“Monday”
Hi, I am trying to create a custom trigger which will fire an action when any of three different columns in a board changes. 1.During the subscription call of the custom trigger, I create a change_column_value webHook and i keep at a local database the inputFields and both the webhookId and the subsriptionId of the customTrigger. 2.When the webHook is triggered the payload doe not contain the webhookId but it contains a subriptionId which is obviously the webHook subcriptionId and not the custom triggerId. How can I identify which is the custom trigger which is related with the fired webHook? Is there any way i can get the webHook subscriptionId when the webHook is created ? What is exactly the subscriptionId for the webHook and is it user related ? I mentioned that some developers say that they keep a list of subscriptionsIds per webhookId may this be really a list or a single record ? Thanks for your help in advance.
Hi, What is the difference between itemId and pulseId ? Thanks
I want to create New Label in Existing Status Column in Monday Board through Mutation. Is there any mutation that can do that ??
How to use cursor pagination for previous page? i need to fetch the items with pagination, new API version changed , please help!
HI, I woulk like to know if you have standard API for Monday Projects and a Field Service solution The logic of this integration will be : • A flow Monday Projects to Our Field Service solution: For the creation of a service order at the launch of the project in Monday Projects for example Data : Date, view activity dependencies, Project Manager, etc. • A flow Our Solution to Monday Projects: Feedback on progress status and closure of service orders o Details of services and costs associated with each service orders Our customers could use your solution to: Manage project models, Create the project, Monitor the progress of the project. Our solution would manage the execution of the service orders with all the complexity associated with the service orders: scheduling, Inventory, Availability and skills of resources, Associated documentation, Contract and pricing rules, etc. Thanks for your help and Regards Our SaaS solution can manage APIs with related applications to facilitate thi
Does an app’s API access token expire if a customer’s app trial has ended? This is for an app integration that a customer wanted to trial in the marketplace.
Hi Darshan Hiranandani, I hope you’re doing well! I’m currently working on enhancing the security measures for our app to protect user data from vulnerabilities and potential breaches. As someone who might have experience or insights in this area, I would greatly appreciate your advice and suggestions.
Hey team, I’m Darshan Hiranandani, I have a question regarding our app development process. I’m curious about the possibility of integrating third-party services or APIs into our app. This could potentially enhance functionality and provide additional features for our users. What are your thoughts on this? Have you had any experience with integrating external services or APIs into apps before? I’d love to hear your suggestions and insights on how we can approach this aspect of our development.
Hi, We are going to implement monetization on our app, offering both standard and premium plans. I have some questions I would like to clarify. When a user installs the app, it will be under a 14-day trial period. What will be the data for the renewal date? We need this information to calculate how many days are left in the trial period. If the renewal date does not mark the end of the trial period, I guess we can’t rely on the “days_left” data right? Do you have any suggestions? query { app_subscription { billing_period days_left is_trial plan_id renewal_date } } Thanks. Br, YarHuoy
Hello Monday, Here is what I try to accomplish, the platform that I have used so far, and the obstacles that I have encountered, wondering if people know any alternative solutions here: Goal: I want to develop a form featuring dropdown questions that are capable of dynamically fetching data from various boards. Progress: I have used Retool, an integration platform that allows you to query data from different baords through Monday’s GraphQL API. Despite its functional compatibility with our requirements, Retool’s pricing model, especially concerning unlimited external user access, has rendered it an impractical choice for our use case. Question: I’m currently looking for alternative platforms that can offer seamless integration with Monday, enabling the creation of similarly functional form. Or does Monday form provide functions that support dynamic data fetching?
Hi there, I had finished a script that does the following retrieves active tenants, leases, and properties, and then iterates over the active leases to create or update main items and subitems in Monday.com. This worked great before the API update and I’m working at updating it to get it working again. My question is for Sub Items. I have this function for getting the ID of existing sub items def get_existing_subitem_id(parent_item_id, subitem_name): query = f’‘’ {{ items(ids: {parent_item_id}) {{ subitems {{ id name }} }} }} ‘’’ response = send_graphql_request(query, {}) items = response.get("data", {}).get("items", []) if items: subitems = items[0].get("subitems", []) if subitems: for item in subitems: if item["name"] == subitem_name: return item["id"] return None how would I change this to work with the latest API version I don’t think this is correct def get_existing_subitem_id(parent_item_id, subitem_name): query = f’‘’ {{ items(ids:
On a board I am working with, the items are grouped by what I assume is a widget, a top level grouping. In the api, how can I find out what the name of that widget is when I query and get all the items. I want to find that Carlos belongs to MISC METALS. I am able to get Carlos, how do I find MISC METALS?
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.