Welcome to the new monday developer community
-
Recently active
Hi , I am developing a monday app. I trying out several monday react components from https://style.monday.com/. I got below error while running code: ] ./src/AppSolution.js [0] Line 175:4: ‘StoryStateRow’ is not defined react/jsx-no-undef [0] Line 176:6: ‘StoryStateColumn’ is not defined react/jsx-no-undef [0] Line 179:6: ‘StoryStateColumn’ is not defined react/jsx-no-undef [0] Line 182:6: ‘StoryStateColumn’ is not defined react/jsx-no-undef [0] Line 185:6: ‘StoryStateColumn’ is not defined react/jsx-no-undef Please let me know from where to import these tags.
Hi, I tried to add new line symbol inside long text value using this query: mutation { change_column_value ( board_id: 940074204, item_id: 1129522709, column_id: "long_text", value: "{\\"text\\":\\"234test123\\n222\\"}" ) { id } } But I have got an error after executed the query: { “error_message”: “Internal server error”, “status_code”: 500 } The same error on the “try it yourself” Is that not allowed ? Thanks!
Hi All, I tried to add Google analytics to my app board view in (index.html) using script tag it’s the simplest way to add analytics to website ( analytics script ) But after more than 42 hours no data appeared in analytics dashboard. Any advice, solution or recommend way ?
Hey Everyone! I’m sorry for making a duplicate of my old post, but this one is a bit different. I found out that there’s now a SDK way of file upload rather than having an authentication flow which is what I have now. I was excited to implement it, so I updated the package to: "monday-sdk-js": "^0.1.2", but I ran into some issues. When trying to upload a file with the sdk I get: Error: Invalid content-type on response from monday api graphql at client.js:117 at client.js:137 at Array.forEach (<anonymous>) at MondayClientSdk._receiveMessage (client.js:135) This is for the add_file_to_update mutation. The update ID is indeed an Integer and file is a file, but maybe the file isn’t set up properly for upload? This is the file when I console log it: {file: File, name: "uploaded-file", ext: ".png"} ext: ".png" file: File lastModified: 1585754352396 lastModifiedDate: Wed Apr 01 2020 11:19:12 GMT-0400 (Eastern Daylight Time) __proto__: Object name: "donot1.png" size
Hi. I need to gel all subitem values for the specific board. My steps: Getting board (id 1087268631) items and looking for sub-items. So, ids for sub items are [1087268826, 1087268835, 1087300566, 1087301038] Getting sub items values by ids [1087268826, 1087268835, 1087300566, 1087301038] As result I see no items. What am I doing wrong?
Hi there, Just a ticket to mention Delete Group method in the V2 Mutation API is not working whil I get a deleted “tru” result. Awkward! Example, Payload sent: {"query":"mutation {\\ndelete_group (board_id:804412871, group_id: \\"sso_extended\\") {\\nid\\ndeleted\\n}\\n}","variables":{}} Result I got: "data": { "data": { "delete_group": { "id": "sso_extended", "deleted": true } }, "account_id": 5038486 When logging to monday a few minutes later, the corresponding group is still there!
Does anyone know of a sure way to get data into Power BI? I’ve tried this Loading GraphQL data (monday.com API v2) into PowerBI · GitHub However it’s not working returning an error “We found extra characters at the end of JSON input.” I have yet to identify why its returning this error as its a copy paste of what other use and say works. Any help or insight would be greatly appreciated. Thank you!
Our board is maxed out for 10,000 subtasks. Why is there a limit>? Also, we archived some of them but then we have no way to see how many seats are being freed so far. Is there anyway to see how much we freed for the entire period and not just a certain month or quarter.? Thanks!
Hey, I was assigned the task to build an integration using PHP. I cannot use NodeJS for my task so I was wandering how can I use the Storage API outside the SDK implementations? It seems like you API docs and PHP quick start guide have nothing about this and there are no other post on this forum either. Thanks is advanced.
Hi, I just signed up for Monday.com today and I can’t find any words to describe how beautiful and responsive the UI is. It’s really a masterpiece! Can you share what language/platform monday.com was built in? Thanks!
Hi All, I have developed Monday App with Monday SDK, It is working very well for our company domain “symbo-team.monday.com”.But when I install it on another company domain like “sky-team.monday.com” then I get the error “This page is restricted”. Note: All related permissions have been applied in “OAuth->Scope” section. (By the way, our account is not paying one.) Best Regards Sultan
Hi, I have developed a custom integration which custom action(node js). We have a requirement to show a notification message real time to user on board. I tried using create_notification api, but its showing message in notification area. Is there any possibility to show notification messages some where on the board itself? i mean like some popup? I need this to be triggered for a custom action(node js) code.
Hey guys, I read some problems were fixed on the monday.execute(‘openItemCard’) command, but I am still getting some (loading sdk from cdn). Both update and column kinds allow us to edit the item name. However it does not register as a change: the view is not updated (listeners are not triggerred) the promise response shows that res.data.is_item_changed equals false instead of true. I also got the …/board/0/… route after closing the update kind… Note that I am using the SDK on a Board View of a published App, never previews. Kinds regards, Laurent
Just a friendly reminder that @Thomas-Omnitas and @FredrikEricson from Omnitas Consulting are hostning Funnels App webinar on March 24 and 25 😀 Funnels for monday.com is an app providing board views to visualise sales or marketing funnels and journey of items through the workflow. With Funnels app, you can map activities and prognosis to get the best out of your leads. Register today and save your seat 🌟 Registration links: March 24 https://webinar.getresponse.com/yco0e/funnels-app---increased-conversions-with-sales-funnels-in-mondaycom March 25 https://webinar.getresponse.com/yco0e/funnels-app---increased-conversion-with-sales-funnels-in-mondaycom Cheers! 🤩
Hello All, One of my developers is working on creating an integration to track the status of auto dialing calls and report it back into monday.com . The integration is very straight forward, however we are having difficulty supplying the user with the ability to choose the index of the selected status column. With our current configuration the entire integration screen crashes when the user clicks into “something” If anyone has any thoughts on what could be wrong! Please help.
I’ve been trying to create new versions of my boardview in my app using the Custom URL deployment, but I get a 500 HTTP response, and then I just have multiple versions of the same build spinning each time.
Hello, I’m having trouble creating a subitem via the API with the Date column automatically filed. The subitem is correctly created, and I have no problems with other columns, but the date column just will not update. It is left blank on every created subitem. Any thoughts on what I’m doing wrong below? I’m using PHP. Here is my code: $query = ‘mutation ($myItemName: String!, $columnVals: JSON!) { create_subitem (parent_item_id:(redacted), item_name:$myItemName, column_values:$columnVals) { id, board { id } } }’; $vars = [‘myItemName’ => ‘TestItem’, ‘columnVals’ => json_encode([ ‘status’ => [‘label’ => ‘Done’], ‘Date’ => [‘date’ => ‘2021-01-02’] ])]; $data = @file_get_contents($apiUrl, false, stream_context_create([ ‘http’ => [ ‘method’ => ‘POST’, ‘header’ => $headers, ‘content’ => json_encode([‘query’ => $query, ‘variables’ => $vars]), ] ])); $responseContent = json_decode($data, true); echo json_encode($responseContent);
Hi, I have a board with two groups, and i want to be able to fetch an item by a specific column id, but it exists on both groups. Is it possible to fetch items by column value and group id at the same time?
Hi Monday Team, In your API documentation, for creating notifications, it says we can add JSON payload, but I am getting 500s constantly when I try to add it (without that argument it works well): monday.api(` mutation { create_notification( text: ${JSON.stringify(notificationText)}, user_id: ${userId}, target_id: ${itemId}, payload: ${JSON.stringify(1234)}, target_type: Project, internal: true ) { text } } `); Response: {error_message: "Internal server error", status_code: 500} Am I doing something wrong? Could you help me, please? Additionally I have a couple questions as well: if it will work, how we can get the payload when opening a notification? I will be in the context? What is “post” target_type (I tried it but it results as 500 on my side)? In this documentation you used “internal” argument for creating notification, what does it mean? Thanks, Krisztian
Hello, I would like to have some custom integration that allows matrics/value from other platform to my Monday boards. For example I Monday board that have 5 domains site that I want to keep track for its expired date. E.g: I have 5 domain that stored in GoDaddy platform; I want to capture name of domain, expired date of domain and some other metrics to my Monday board. And I want it update to my Monday board real time, for example, if I renewed my domain +1year, it automatically update to my Monday board. “exampledomain.com” expired on 04/03/2021 if I renewed in godaddy platform both godaddy and Monday are updated to 04/03/2022. Is it possible? Thanks.
@Helen - As of today, the Location column was updated in the API - THANKS FOR THAT… But for some reason when I retrieve an item, the location data is blank. I’ve seen some items work … and location is there… but i just tested now… and inserted a location inside the Monday app, and then did a GQL call, and it’s blank. Have you seen this issue before? My GQL call: query{ items(ids:$id){ id name column_values { id text }}} My Response: {#324 +"id": "1062072762" +"name": "test 2" +"column_values": array:37 [ 0 => {#322 +"id": "subitems" +"text": "" } 1 => {#309 +"id": "person" +"text": "" } 2 => {#319 +"id": "type" +"text": "" } ... 27 => {#344 +"id": "location" +"text": "" } ] }
Hi all, I’m developing an application for the marketplace and facing an issue with the files API. Except for .png files, all the files I’m trying to upload, contain a ‘null’ extension and as a result, the file cannot be previewed. I’m using the code below in Node.js: const upfile = req.file.path; // set auth token and query const API_KEY = req.owner; let query = `mutation ($file: File!) { add_file_to_column (file: $file, item_id: ${parseInt( req.body.itemId )}, column_id: "${req.body.columnId}") { id } }`; const url = 'https://api.monday.com/v2/file'; let boundary = 'xxxxxxxxxx'; let data = ''; fs.readFile(upfile, function (err, content) { data += '--' + boundary + '\\r\\n'; data += 'Content-Disposition: form-data; name="query"; \\r\\n'; data += 'Content-Type:application/json\\r\\n\\r\\n'; data += '\\r\\n' + query + '\\r\\n'; data += '--' + boundary + '\\r\\n'; data += 'Content-Disposition: form-data; name="variables[file]"; filename
I am trying to build a Power BI Report that can modify information on Monday.com. The below query works to get information from a board: “{”“query”“: ““query { boards(ids: ####) {activity_logs(limit: 1000) {event, entity, data, created_at, user_id, id}, name, id} }””}” The below mutation is giving me an error message: "{“query”: ""mutation change_simple_column_value (board_id: ####, item_id: ####, column_id: ““column””, value: ““1"”) {} “”}” Error Message: DataSource.Error: Web.Contents failed to get contents from ‘https://api.monday.com/v2’ (400): Bad Request Details: DataSourceKind=Web DataSourcePath=https://api.monday.com/v2 Url=https://api.monday.com/v2 Any tips are appreciated. I am an absolute beginner when it comes to GraphQL.
I’m having trouble when adding multiple items with multiple sub-items. For a sense of scale, I have a script that’s attempting to add circa 125 subitems across circa 75 items. There’s two issues: Subitems do not always add API calls to add subitems sometimes indicate they failed, but actually didn’t Does anyone know why this occurs? Is it being fixed in the API? Are there any workarounds? Details: Subitems do not always add Using a query like: mutation { create_subitem ( parent_item_id: 1234, item_name: "Some Item Name", column_values: "{\\"properly\\": \\"escaped json here\\"}" ) { id } } Sometimes gets a result like : { "data": { "create_subitem": null }, "account_id": 9999} Which indicates that it was not possible to create the subitem i.e. the id of the subitem is null. This contrasts with a nice response like: { "data": { "create_subitem": {"id": "1234"} }, "account_id": 9999} P.S. I know the parent item exists as other subitems of the parent did get added successfu
I am trying to have a custom field and the situation is like when I opt for dynamic mapping and mention the dependency to be the boardId, I easily get the boardId but when i choose it to be the list and mention the dependency on boardId, I don’t get it in my request. Any help would be appreciated…!
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.