Welcome to the new monday developer community
-
Recently active
Hello, I am trying to perform the following action and getting an error or status code 403 “user unauthorized to perform action”. Action: mutation { create_item (board_id: 344121329, group_id: new_group63732, item_name: "some name", column_values : "{\\"person\\" : {\\"personsAndTeams\\" : [{\\"id\\" : 11471200, \\"kind\\" : \\"person\\"}]}, \\"contact_method\\" : {\\"ids\\" : [1]}, \\"phone\\" : {\\"phone\\" : \\"\\", \\"countryShortName\\" : \\"US\\"}, \\"email\\" : {\\"email\\" : \\"[test@test.com](mailto:test@test.com)\\", \\"text\\" : \\"[test@test.com](mailto:test@test.com)\\"}, \\"text01\\" : \\"test\\", \\"status\\" : {\\"index\\" : 1}}" ) {id}} Response: { “error_code”: “UserUnauthroizedException”, “status_code”: 403, “error_message”: “User unauthorized to perform action”, “error_data”: {} } I have verified token and queries working with no issues. Any help is greatly appreciated.
Hi, While trying to use the GraphQL in Node.js for add_file_to_column in the mutation mode, I’m getting an error of Unsupported query, no matter what. The code is exactly the same as the request in the Postman, which works properly. Please try to advise: const formData = new FormData(); formData.append( 'variables[file]', fs.createReadStream( 'Path to file' ) ); formData.append( 'query', 'mutation ($file: File!) {add_file_to_column (file: $file, item_id: XXXX, column_id: "files") {id}}'); fetch('https://api.monday.com/v2/file', { method: 'post', headers: { 'Content-Type': 'multipart/form-data', Authorization: MONDAY_API_KEY, }, body: formData, }) .then((res) => res.json()) .then((res) => { console.log(JSON.stringify(res, null, 2)); }) .catch((err) => { console.log(err); });
Hi community, How i can change the value of a board-relation type column? Is there any way? Thanks in advance.
Hi, I am trying to fetch the column title and their id’s of a particular board by passing its id(boardId) but I am getting the result of all the boards that are there in my workspace. Can anybody help me out if i want to have the result for that particular board only? Note : When I try the same query on API Playground,I get a perfect result.
Hi guys! I’m working at Omnitas Consulting, a proud partner for monday.com from a few years back 🥰 I just want to give you a heads-up for our upcoming webinar about Funnels App for monday.com. Funnels App in an analysis tool that can effectivize your sales and marketing funnels, and increase your conversions. In these webinars, our CEO @Thomas-Omnitas and CSO @FredrikEricson will walk you through the features of Funnels and how to best work with the tool for optimizing your sales and marketing strategies. We’re hosting one on March 24th from 18.00-19.00, and one on March 25 from 11.00-12.00 (Central European Standard Time). Links for registration: March 24th: Webinar unavailable March 25th: https://webinar.getresponse.com/yco0e/funnels-app---increased-conversion-with-sales-funnels-in-mondaycom Hope to see you there! 🌟
Hey everyone, When we try to mutate the values of one item , the result is an error!. Funny enough we made similar mutation before an after, and those were a success The mutation we use is: mutation { change_column_value (board_id: 79023, item_id: 106, column_id: “status1”, value: “{"tag_ids":[8671878]}”) { id } } GraphQL query failed with 1 errors {‘errors’: [{‘message’: ‘Query has complexity of 30001, which exceeds max complexity of 27690’}], ‘account_id’: 4548618} This kind of error has been present now for at least 3 weeks, sometimes is a success sometimes is not. Thanks for your help
I’m building a new Integration App that has a Recipe that notifies a user in another platform whenever an Item’s Status changes. Similar to the Slack integration recipe, I would like to allow the user to input a custom message with the option to auto-populate Item properties. For example, I managed to get this input option using the ‘Message’ field type. However, once a trigger occurs and the custom action for the recipe is executed, the message content payload contains the placeholder property specified by the user instead of the actual values. For example, Any guidance that can point me in the right direction is greatly appreciated!
Hello! im building my first monday app and im having some issues. my app has a board view and an integration with a webhook to my backend. im registering to events on the board such as column changes, and im manually sending query and mutation request from my backend to the board, using my admin api token. when im working on my own account everything seems to work fine, but when im installing the app on a different account i dosent work. im getting an event from the webhook with the board and item ids that i want to mutate, but my requests dont do anything. so my question is first of all if has something to do with authentication, and if it does, how can i authenticate my requests using webhooks?
Hello! I have mentioned this personally to @Ben, @VladMonday, and @dipro Putting this here so I can follow the development. This defect is causing a lot of disappointment and curious if this is on your radar. workspace templates with custom monday apps doesn’t work. i have verified this many times, pasting the steps to reproduce from a slack conversation in October create a dashboard and add a monday app you created create a workspace template that includes this dashboard expected: using this workspace template will show the dashboard with the monday app actual: using this workspace template will show the dashboard with a loading indicator don’t hold your breath, the monday app will never load! is this in your backlog? do you have an ETC for a fix? Thanks!
The Quickstart guide uses React 16.13.0. Is it necessary to use this version of React to create an app? Since the app is rendered in an iframe and your are interacted with Monday through the API would it be possible to use a more modern version of React with Hooks support to build an app?
I am trying integrate our app with Monday.com by using custom trigger and CREATE AN ITEM WITH MAPPING. Can I know how will I be able to create an integration column along with this flow of creating an item? Also, will I be able to update an item using the recipes only, without making use of API?
Hello, I’m struggeling with the API. I’m using Python (Django Framework) for my contact form. In this form is a multiple choice checkbox which I want to match to the drop-down field in monday.com. Now I have to iterate through the list in the dictionary “data_dict”. Does anyone have an idea how to do this? This is my vars dictionary from the API: vars = { 'myItemName': data_dict['nachname'] + ", " + data_dict['vorname'], 'columnVals': json.dumps({ 'status': {'label': 'Neu'}, 'e_mail': {'email': data_dict['email'], 'text': data_dict['email']}, 'telefon': {'phone': str(data_dict['telefon']), 'countryShortName': 'CH'}, 'text9': data_dict['plz'], 'drop_down': {'labels': [data_dict['person']]}, 'drop_down5': {'labels': [data_dict['beruf']]}, 'drop_down59': {'labels': [data_dict['prio'][0]]}, 'drop_down7': {'labels': [data_dict['alter']]}, }) } As it is now just the first item would be passed in to the ‘drop_down59’
Hi Im attempting a basic command to test and get used to the API using https://reqbin.com/curl, I am posting the following curl and getting a 400 (Bad Request) error the issue appears to be with the enclosed strings “Postcode”, “N221RW” and appears to be with the double quotes I have tried escaping with " and various other symbols but unable to get it to work, can someone assist me? Thanks curl -X POST -H “Content-Type:application/json” -H “Authorization:xxxxxxxxxxx” -d ‘{“query”:“{items_by_column_values (board_id: 114768112, column_id: “Postcode”, column_value: “N221RW”) {id}}”}’ “https://api.monday.com/v2/”
I have hit an error trying to build and run the docs-viewer example app (which I’m hoping to use as the basis for my own…) It seemingly built OK. I wasn’t sure if I could just change the text from quick-start-react to docs-viewer in the npx command from the guide, but tried it and it seemed to work, albeit with some warnings and unexpected prompts I had to respond to - C:\\Users\\cex\\monday\\notable>npx @mondaydotcomorg/monday-cli scaffold run ./ docs-viewer Need to install the following packages: @mondaydotcomorg/monday-cli Ok to proceed? (y) y npm WARN deprecated har-validator@5.1.5: this library is no longer supported npm WARN deprecated @types/source-map@0.5.7: This is a stub types definition for source-map (GitHub - mozilla/source-map: Consume and generate source maps.). source-map provides its own type definitions, so you don’t need @types/source-map installed! npm WARN deprecated request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/314
Hi, I am not a Dev, I just applied the Quick start integration guide to transform text and it works! But when I close my CLI terminal is stop working. Am I doing something wrong? Best regards!
How do you launch your item view when clicking on a column value in a default table board view? Is there an example for this? The Quickstart example only shows how to build a board view.
My first monday app (integration) is working nicely with use of the API key. Does anybody has a good example how to setup and use OAuth to replace the API token? Preferably in React / Visual AStudio. Any help is more than welcome 🙂
Hi there 👋🏼 Since today, the “Create Item Trigger” stopped working. One of our app is using it, and it does not send any data anymore. When I try to access the input trigger in the app framework, here is the result: App framework bug - YouTube It was running very well this morning, we didn’t touch anything on our side. Any help is welcome…
I noticed a new(?) eventType for the create_webhook API call: change_specific_column_value. From the name I expect this webhook fires when a specific column changes 🙂 . I also noticed a (not very well documented) config (JSON) argument to the create_webhook call which probably needs to have the specifics for the column to watch for. My question is: how should the config argument look like to be able to setup a webhook through the API that only fires when a specific column changes. @dipro, @AlexSavchuk, can one of you shine a light here?
Hi Folks, I’m trying to find a complete list of the publicly available Monday applications. Is this list fully complete? monday.com Thanks.
Hi Guys, We’re building an app for monday.com and we’ve hit a problem. Our app is attempting to exchange an authorization code for an access token, following the documentation here: https://monday.com/developers/apps/oauth once we have the authorization code, we post it to https://auth.monday.com/oauth2/token with client_id, client_secret and code But we’re getting a CORS error: Is this an issue at our end or at Monday.com’s end?
Hi! Is there a way to trigger a recipe in the App framework when an subitem is created?
I want to use typescript in the development of my Monday app. Is there support for types in monday-sdk-js library? Is there any template for creating Monday apps with typescript and react.js?
Hi Eeveryone, Please help us to resolve our query We want to integrate our Workspace board with Monday’s apps in the marketplace (Jira, in our case). We have two queries: • Can we create a custom recipe for external Monday apps to perform specific actions on the Monday board and vice versa? For example, we have Xx number of integration recipes provided by Monday.com for Jira; now, if we wanted to write a new recipe (different from the existing ones ), what steps we need to take? • Can we capture the OnClick event of the Monday board’s column value into our custom application code? How to trigger that event?
Hi there 👋, I’m building an IoT App, and I’m using a custom input trigger. Each time that a device send data, we should create a new item (service requests). My custom input trigger looks like this: And works well (tested with postman, 200 received, 👌) Subscribe / unsubscribe is OK. I’m trying to create an new item based on the output fields of this custom trigger. And I failed… First try: with the action “Create an Item” I tried with a Item Column Values field, but I don’t know which format is required. I tried this: I receive a 200, but nothing happens. Action trigger looks like this: Is there a doc somewhere to know the format of itemColumnValues? Second try: with the action “Create an Item with mapping” Looks really promising (at least the title), but then, I’m lost: Same question: is there a doc somewhere or codes example?
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.