Welcome to the new monday developer community
Discussions category for everything related to app development on top of monday.com
Recently active
Trying to query items by name (exacly like the one listed in the example with the correct board id and without the country column), results in a 404 Column not found (store.monday.automation.error.missing_column) Items page by column values (monday.com) I have the API-Version header and a valid authorization, so not sure as of what I might be doing wrong. Any help would be appreciated!
Hi monday team, could you please help me point the advantage from building app via uploading zip file instead of url. I need the answer to apply to our app. Thank you.
Hi. I’d appreciate any advice on the error response I am receiving from GraphQL. I am trying to update a date column using the mutation “change_simple_column_value”. Here is the error I am getting: {{ "error_code": "ColumnValueException", "status_code": 200, "error_message": "invalid value, please check our API documentation for the correct data structure for this column. https://developer.monday.com/api-reference/docs/change-column-values", "error_data": { "column_value": "{\\"date\\"=>\\"\\\\\\"2019-06-03\\", \\"time\\"=>\\"13:25:00\\\\\\"\\"}", "column_type": "DateColumn" }}} This is the string I am sending: string dt = "2019-06-03 13:25:00"; string value = @"\\\\\\""" + dt + @"\\\\\\"""; string query = "{\\"query\\" : \\"mutation { change_simple_column_value(board_id: " + boardId + ", item_id: " + itemId + " , column_id: \\\\\\"" + columnId + "\\\\\\", value: \\\\\\"" + value + "\\\\\\") { id } }\\"}"; This works in the Monday.com “API Playground”. I think th
Hello, i am replicating the example usage above and can’t figure out what’s the issue. Do i need to update my API version somewhere? i cant figure it out
I’m running the following query on 2023-10, which tries and restrict the results to subitems assigned to myTeam (using the summary column on the item level) query { items_page_by_column_values (board_id: XXXXXXX, columns: [{column_id: "subitems_team", column_values: ["myTeam"]}]) { cursor items { id name } } } The above gives me a Column of type lookup is not yet supported for this query was hoping for a workaround? (even though the “not yet” is promising)
Hi team! I’m trying to test my server endpoint for my app event webhook (unstall, unistall, app_subscription_trial_created, app_subscription_created, etc…). I entered my server URL endpoint for the “All events” input, in my app “Manage Webhooks” page. My question is how can I test this endpoint with a mock webhook that will be sent from monday to my server endpoint? I saw there is mock_subscription that I can use, but how should I use that? where/when it will fire the event to my server? and how should I create this mock? I want to test all kinds of subscription event as I mentioned above and more. Or maybe there is another way to test those cases without this mock? Many thanks in advanced! 🙂
Hi there, A question for what is a supported search parameter in the new “items_page_by_column_values” function I am currently trying to replicate a functionality I had in 2023-07 API: items_by_column_values( board_id: BOARD_ID column_id: "name" column_value: "SERIAL NUMBER" ) { id name column_values { title text } } With this query I could find get all the columns for a given an item name (serial number) on a board. Additionally the complexity value was 5000, so it returned fairly quickly. It also gave the text values for mirror columns I had on that board which linked to other serialized items which I needed. However, when I try to do this same thing with the new “items_page_by_column_values” function I tried: { items_page_by_column_values( limit: 1 board_id: BOARD_ID columns: [{column_id: "name", column_values: ["SERIAL NUMBER"]}] ) { items { id name } } And got a “Column of type “Name” is not yet
I am looking for a way to transfer/migrate data from Clickup to Monday.com. Transfer folder with their tasks, files, comments, etc
Hi, I have a question regarding zapier integration with monday. I want to trigger a zap when a monday status column changed. It did’nt used to be a problem, but lately, monday integration in zapier is not able to find the trigger from monday. I tried all sorts of things: logging out, adding new rows, trying in a new zap. It’s now happening most of the time nowadays when trying simply to trigger a zap when a status column changed. Either the request from zapier is throttled or it can’t find a instant trigger event. Is there a change from Monday API I should be aware? Thanks for the replies.
When a customer’s free trial has ended or is about to expire, does monday automatically send out an email letting them know to subscribe to a plan? I’m trying to figure out if I would need to set that up myself as an app developer or if monday already does this. I don’t want customers to be caught off guard when their integration suddenly stops working.
Today I was going through Webhook docs for App Events , and In There code Snippet It need to be MY_CLIENT_SECRET. May be just small typo error.
What are the criteria for an integration column to be created form a custom action trigger. As an example when using the google calendar integration, when a link it created updates the items integration column with a link to the created event. As far as I can determine there are some rules that need to be met for this column to exist but those do not seem to be documented anywhere
I am able to create an item without trouble if I do not reference the item files column and I get back the new item ID and save that for future use. I have the URL to an image, fully qualified, as in https://cdn.mysource.com/foo.jpg The board has a column of type file with an ID files and therefore I want this image to be assigned to it. No matter what I do though, Monday returns {"error_message"=>"Internal server error", "status_code"=>500} When I include the column with the image, files: image, the image string URL the create fails. Why??? I tried the mutation with the item_id and column_id and providing the id of the items file column, same deal. mutation($item_id: Int!, $file: File!) { add_file_to_column (item_id: $item_id, column_id: "files", file: $file) { id } } How can I create an item with an image using Monday API? What is the secret? Please!
Hi All, I’m using monday API documentation, Items Page to filter results the data from specific date range. But I found the maximum number of items to return is 100. I would like the query can return more than 100 items with filtering function. Could anyone suggest it? Thanks very much in advance:) Best Regards, Jia Tang
Hi, Do we have a API in Monday.com to create a Customer or Contact in Monday.Com CRM? Please share the API link Thanks
Hello, there! I was looking for a solution on how to receive events about sub-item changes in the parent context, and found this closed topic. A small quote for a broader context monday.listen(“events”) not quite working with subitems. I’m sure dev team aware of it, just wanted to have some roadmap or estimation, when it will work? Currently, there is no event when the subitem is updated. And when new subitem has been added the generated “event” is for the parent item update, with all subitems, so it’s impossible (afaik) to detect actual new subitem. Do monday team have any updates or workarounds to solve this problem? Best regards, Dima
Hi, I can’t find this filter feature in our own developed Custom Dashboard Widget. May I know is this feature available in Custom Dashboard widget? Thanks Br, YH
Greetings community. I am developing a widget and in its configuration window I have a dropdown list type field to which I must add options dynamically, this through the SDK. Thanks in advance.
I want to send the file as base64 in the API I know that I have to use https://api.monday.com/v2/file to send a file, and I uploaded a photo from my system in postman as a test. But I want to send the file as base64 with any extension such as csv, xlsx, xls, doc, pdf, etc. Thank you for telling me what to put in postman instead of the image key pay attention to the image below
What is the recommended way to determine when to delete personal data for an account to be in compliance with the Developer Terms (see bullet point four here: Security and privacy)? Would querying the App Subscription via the API be sufficient? Here’s how I could see how the logic might work: If there is an active subscription, then the data wouldn’t be deleted. If there is not an active subscription or the API request fails due to authentication issues, then the personal data for the account should be deleted within 10 days. Another way I could think of it working is via the app events webhook, though that seems less reliable in case a webhook is missed by my server.
We recently released 3 new monday.storage SDK methods that allow you to maintain storage across each application, rather than each instance. With the new methods, the storage is not tied to a specific instance so it does not reset between major versions. monday.storage.getItem(key) monday.storage.setItem(key, value) monday.storage.deleteItem(key) Please note that with global-level storage, developers are the ones responsible for managing how items are stored on the client side - not monday.
Is there a way to decide which api to use when calling the GraphQL endpoint with monday.api()?
I am using the GraphQL query to update the group name. It didn’t seem to be updating the name based on group ID. referencing : Groups Any suggestions on how can I achieve this ? best, Shamika
Hey all, I’ve read in the documents that we are able to pull from formula fields. When I try to pull them, they are coming back as null and an empty string. Looking at the column on the board, it should be coming back as “100%”. This is a long calculation that will take a bit of time to calculate in C#. Is there something I’m doing wrong? query: query {boards (ids: BoardID){items (page:1, limit: 250) {name id column_values(ids:“formula3”){id value text}}}} Returns: “column_values”: [ { “id”: “formula3”, “value”: null, “text”: “” } ] Reading the formula column You can query the formula column using the column_values object. The object has different fields based on which API version you are using. Column values v2 fields will be available in API versions 2023-10 and later, while column values v1 fields are only supported in versions 2023-07 and 2023-04.
hi there, I have a question for the community, sorry if it is very specific, but I have already tried all the alternatives. I want to update a column in monday from make.com with a GraphQL query, it uses a value of type array with several elements inside. the query results in something like this: here as the static elements: mutation{ change_multiple_column_values(board_id:2664704591, item_id:4836020925, column_values: “{“connect_boards6” : {“item_ids” :[ 3250783898, 3251460971, 3250782023, 47898 50971, 4843089473, 4870951353, 4870986814, 4870992498, 4871015792, 4871031386, 4871037787, 4871188497, 4871860559, 4871862099, 4872167581, 4872170055, 4872203429]}}” ) { id } } and here with the dynamic elements: mutation{ change_multiple_column_values(board_id:2664704591, item_id:4836020925, column_values: “{“connect_boards6” : {“item_ids” :[ text]}}” ) { id } } being text the array with the data. The error is that when you did it with the static values, the query is executed successfully. Wi
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.