Welcome to the new monday developer community
Discussions category for everything related to app development on top of monday.com
Recently active
Hi developers and monday team, I am Rasil Baidar from Jobflows. I have a question to ask. Recently one of my client’s trail for Jobflows has ended and we are saving the subscription data of the client in our Backend API service to manage our business logic. Since the clients trail subscription has ended, we want to extend the clients subscription manually from our Developer console. Doing so does not call our API service. This is causing a lot of manual work for developers as we will need to manually create subscription data on our database. This is a lot of headache. How to solve this issue?
Hi, We set up few workflows to export data from monday.com to external DB using GraphQL. There are scenarios where we create items on board and deletes them later, but they will be export to Database using above work flow. We need to identify deleted items from board and make sure they are deleted from DB as well. I am trying to use below GraphQL to finidout the activity on board but it’s returning all types of events. Is there a way to filter out using GraphQL and export only event=‘delete_pulse’ records ? Can you please advise how we can alter below query to get only required event types. Thanks & Regards, Madhu Kolli
Hi I am from BigPicture. I would like to register all types of webhooks for given board including subitems. Currently I am not able to register webhooks for subitems if that board didn’t contain subitems before. Is there any other way to be informed that any subitem has been added to board if we didn’t register such webhook before? Best regards Przemek Banasik
I want to retrieve the replies in conversations. Is there a way to do this through the monday.com API? Perhaps by passing the board URL and ID?
Hi, I am testing DocuGen to streamline my process. I have successfully created some files using this platform. However, I have not been able to set up the click me button yet (Integration recipe). I am following this tutorial (1540) Get Started on DocuGen in 6 Minutes - YouTube, but the recipe is not loading to be set it up. I I have waited more than 10 min and the integration recipe is not loading. Is there another way to achieve this task? Thanks for your help. Norma Osorio
I need to update the title of an item in my app when a user changes it in another view. I see that there is a method called monday.listen, which takes “event” as an input. This listener gets triggered when a new item is added, or a column value is changed. But it is not fired for other common events like Updating the title of an item Removing an item Is there a plan to add these, or an alternative workaround?
I need to add a date to a date column when I create an item on a board. Here is my code. It does add the item, but the date field is left blank. Any help is greatly appreciated. mutation { create_item (board_id: 6137175354, item_name: “Bills New Item22”, column_values: “{"date":"2023-05-25"}”) { id } }
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
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.