Welcome to the new monday developer community
-
Recently active
Hi everyone, I’m excited to share that we (www.supermetrics.com) are in the process of launching our beta integration with Monday. Supermetrics enables you to easily access and retrieve your key marketing data from dozens of different marketing tools, social networks and more. It’s used by over 16,000 businesses worldwide to get their data to where they work (Spreadsheets, Visualisation tools, Data warehouses etc). As part of our initial beta we are rolling out support to connect Google Ads into Monday, allowing you to easily import the data on an automated/scheduled basis, and produce reports, automate tasks and more. We are looking for beta testers with an active Google Adwords account who would be interested in learning more and potentially taking part. We would be interested in talking to both direct users and agencies on behalf of their customers. If you are interested feel free to reply here or drop me a message, or to tony.lucas@supermetrics.com. Equally, I’d be just as keen to
Hello friends! I’m currently creating an integration between a CRM system and Monday, writing the backend in the CRM’s own scripting language. My question is: I have a variable called projectName, where the name of the project that I would like to set is saved, and I would like to send in this variable in my mutation so it also gets saved as the board name for my board. Although, I’m not really sure how to write that. This is what I’ve tried, but failed: I guess the projectName variable should light up as blue, since that’s the color of variables in the system, but I can’t figure out the syntax. Mind you, I don’t want to specify the content of projectName in the query, since it may differ for every request. Anybody has an ideá of how I should format this query? So thankful for any help!
These are the errors while we try to receive board’s context data from custom created board view even when using Monday.com SDK itself. And as far as I know this should not be a much complex query to do so. And when the same view is opened on other boards it works seamlessly. Please some help me solve this issue. Thanks.
I have an application that pulls information from the activity log, including the times listed for items created, updated, etc…, and I’m working with clients in a different time zone. I’m wondering if all time-related data is entered into and stored in the activity log itself in UTC time, or if the data is ever converted (whether while going in, being stored, or coming out of the board) according to the client’s local time setting. The reason I’m asking is that I’m having them specify a date/time range to query the activity log with, and I need to know whether to tell them to specify a time in their local time, to convert to UTC first before specifying the time, or if the time zones will be different anyway depending on the timezone of the logged-in user who performed the action stored in the activity log. Thanks
How to assign an user of my team when i create an item. Can i put an id of one of my users teams and assign him this item ?
hey , im trying to add multiple columns to new record in one time and its always ignore from the phone and doesnt sign it $vars = [ 'leadName' => $data['item_name'], 'columns' => json_encode([ 'email' => ['email' => $data['email'], 'text' => $data['email']], 'phone' => ['phone' => 972525938456, 'countryShortName' => IL], 'text' => "test" ]) ]; $query = 'mutation ($leadName: String!, $columns: JSON!) { create_item (board_id:'.$data['board_id'].', item_name:$leadName, column_values:$columns ) { id } }'; $ch = curl_init(); curl_setopt_array($ch, array( CURLOPT_URL => "https://api.monday.com/v2", CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => "", CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 30, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_
Has anyone get your dashboard autorefreshed in PowerBI using a gateway? I can refresh it on my desktop, but when I’m using online services it doesn’t work. I’m using the https://api.monday.com/v2 link as a conector, I’ve tried introducing the api token together, but it didn’t work either.
Hi, Wondering if there is a way of altering the columns within a subitem via the API. What I would really like to do is create a subitem thru the API with the column names/types of my choosing instead of the default 3 columns, but I’d be happy enough right now being able to create the subitem, and then add or delete columns within the subitem to get it how I want it. Thanks.
Hello everyone! I recently tried adding a Copy to clipboard button to my view application. It worked perfect running local but in the monday iframe it didn’t copy at all… After a quick lookup at the internet I saw it can be blocked inside a iframe 😢 This is the 2 code I tried - First try - navigator.clipboard.writeText("Hello world!); Second try (I know its depricated but people said it can work - var textField = document.createElement(‘textarea’) textField.innerText = “Hello World!” document.body.appendChild(textField) textField.select() document.execCommand(‘copy’) textField.remove() Hope someone can help me 🙂 Thanks!
Hi there, I am building an application that makes use of multiline textfield or textarea, I explored the documentation for TextField but it doesn’t support multiline so is there a component that supports multiline text field or a Textarea ?
Check this weirdness out. It worked all day today while testing. Wondering if it’s a UTC problem I’ve seen elsewhere…
Hey, I’m trying to get all the items at a certain date at a certain time. The following query works for date: query {items_by_multiple_column_values (board_id: 708469745, column_id: \\"date\\", column_values: \\"2022-01-03\\") {name column_values{title text} group{title}}} But I’m also trying to do this with time: query {items_by_multiple_column_values (board_id: 708469745, column_id: \\"date\\", column_values: \\"2022-01-03 13:00\\") {name column_values{title text} group{title}}} This doesn’t seem to work, but when I just get everything date and time is formatted like this: Does anyone know how I would get items by date and time? Thanks a lot!
I was looking into making a copy action that dupes and moves the item in one action. I have found that dupe mutation which i have working but I cannot find in any documentation for the mutation that is being used to move the item to a different board. Is this a mutation and I am just missing it I have tried to use the move item to group mutation but that only moves it within the current group. Thank you for any assistance you can provide
Hey I am trying to get file details for the Monday account using https://api.developer.monday.com/docs/files-queries but I am not getting any files nor I am getting any error I am trying to query files using items with the query as query { boards (ids:<id>) { items (limit:100) { assets { id url name } } } } but in return I am getting empty lists for each item but we have files uploaded for some items (that I can see in the app) still not getting it from the API call. Thank you.
Unable to query for boards in a paginated setup. The documentation says Where as the API call is returning with a message: Field ‘boards’ doesn’t accept argument ‘pageInt’
We have some APIs in place for a while now, connected to our own CRM. Everything has stopped working today and cannot update Monday.com from our server. Nothing has changed our side, server can see call externally and API token still the same. However, today all attempts are coming back with 500 errors and cannot see why?
I am new here and using your API v2 to try get a list of all of the columns and their values. Everything works great but I cannot seem to ever get the very first column and have no idea why. I am using this as my query: { boards(ids: xxxxxxx) { owner { id } items() { column_values { id, text, title } } } } The result is this However in my table I have this: The red arrow is what is missing in the response, the green arrow is what is first in the response. d How do I get it to show the values of the very first column? This makes no sense that it doesnt. Thanks
Hi, I am creating an App with a specific boards, how should I do it? I mean, I wants the boards to be created automatically when the app is installed in the account, I’ll be happy to hear on the best practices here. Thanks Roi
I’d like to select the default value or empty value in the dropdown list from the api query. Is it that possible, for example - in certain condition of my board I want to clear the dropdown selection to its empty value or default. ? Any suggestions how to do that?
Hi, I was wondering if it’s possible to get items from the API sorted on publish date. I can sort on newest_first, but if someone makes an item for next year then that item will be displayed instead of an item that has a publish date tomorrow. This is because newest_first sorts on creation date. Thanks a lot!
Hi Community, I am receiveing 2 payload from monday.com as follow, anyone knows that it is a normal behavior from monday. Note: the first payload does not have the pulseId { "payload": { "blockKind": "action", "blockMetadata": null, "inboundFieldValues": { "externalBoardId": 2025645724, "targetBoardId": 2026078504, "columnValue": { "changed_at": "2022-01-01T01:04:12.839Z", "column_settings": { "allowCreateReflectionColumn": false, "boardIds": [ 2025645724 ] } } }, "inputFields": { "externalBoardId": 2025645724, "targetBoardId": 2026078504, "columnValue": { "changed_at": "2022-01-01T01:04:12.839Z", "column_settings": { "allowCreateReflectionColumn": false, "boardIds": [ 2025645724 ] } } }, "recipeId": 30026767, "forceNoCharge": false, "integrationId": 76043009 } } { "p
Hi all, I am just starting to explore development of Monday apps and found a problem. Following the steps described in https://apps.developer.monday.com/docs/quickstart-view, I have created an “item view” feature. In step “Start from a template” I chose template “Quickstart - ReactJS” and go to “Set up your dev environment”. Then I copy the OS command displayed there and run it on my shell (zsh on MacOS). The problem is that this process running on zsh is stuck after issuing message “Running the project” and it never produces a URL that I can paste into the page on monday.com. This is the full process output: xxxxxxxx@yyyyyyy monday.com % npx @mondaydotcomorg/monday-cli scaffold run ./ quickstart-react > Starting scaffolding process > Repository was downloaded successfully > Copying the directory > Installing packages. It can take a few moments > Node modules were installed successfully > Running the project As an alternative, I also tried to follow instructions at
A need some help, I need to update labels without add or change value in the column? any idea or suggestion for that?
If there a query to get the labels of the dropdown column directly?
All, It occured to me today that if all of the App/Developer documentation was in a Wiki that it might be easier to keep it up to date. As it is, when there are differences in what is documented and the way things are actually working (for whatever reason) every developer has to figure things out on their own. Then there may or may not be a post in the community that most will probably not see… You all get it… it’s the main point of a wiki. One source of truth that we can, as a group, help keep up to date and accurate. And basically monday would get the smartest employee on the planet helping them make monday better … for free. Just a thought. Jim
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.