Welcome to the new monday developer community
-
Recently active
I’m looking to build an integration into monday sales crm. When I look at the api documentation it talks about boards but not customers. I’m hoping I’m just looking in the wrong spot. Can someone point me in the right direction for the monday sales crm api docs. We are looking to push customer activity logs into monday (e.g. they made a call).
Hello, I came across something odd that I hope there is a fix for. I am trying to retrieve items using Items_by_column_values. Apparently, in order to use this method the board permission must be “View all items on the board” (or be a board owner) That means that if I’m trying to query the items by using Items_by_column_values, and the board permission is on “View only items that are assigned to users or created by them in any “People” column”, I’m receiving back error code: UserUnauthroizedException. Every other methods that I’ve checked (retrieve items by board, mutations etc.) are working great. only the Items_by_column_values and items_by_multiple_column_values giving back an error. Any ideas? Thanks!
Hi Guys, I’m quite new to Monday.com. I was asking for a real-life example of how to read data from an integration and display it in a view. If anyone has got an example or any other real-life examples. I would appreciate it- thanks in advance
Hi there! I’m making an Monday app which needs to take data from a dropdown field. I found where i can create it, but i can’t find a place where i would populate this dropdown field with the board data. I found an old discussion here that shows a url where it would use to fetch the dropdown options, but as you can see on the image below, this url field isn’t available anymore. Can you help me? Thanks!
Hello, everyone! I’m writing a script to collect timetracking data for team members. Our timezone is UTC-3 Is there any documentation about this topic (the timezone of the time_tracking columns)? When the data is requested, some datetime fields seems to be corrected (UTC-3), but others are in UTC.
API stopped returning “text” field for “board_relation” columns Our code depends on these values. Change happened recently but I cannot tell when exactly. This renders our app unusable for all customers. Example: query: query { boards(ids:[985577909]) { items(ids:[1210966010]) { column_values(ids:["connect_boards10", connect_boards9, connect_boards6]) { id type text } } } } result { "data": { "boards": [ { "items": [ { "column_values": [ { "id": "connect_boards10", "type": "board-relation", "text": "" }, { "id": "connect_boards9", "type": "board-relation", "text": "" }, { "id": "connect_boards6", "type": "board-relation", "text": "" } ] } ]
Our app Columns auto-link is about to be released to monday.com marketplace and is ready for you feedback. Columns auto-link functions like v-lookup. It helps keep data across multiple boards aligned while saving the time of manual linking and keeping you safe from data alignment errors. It help building complex solutions that up until now requires manual linking. Here is a video showing how to link high-level resources board with low-level project board for automatically connect hours worked with cost without the need to manually link it. We would love to have you part of our beta program. You can join using this link WorkForms UPDATE - Beta program is over - You can install and learn more about the app here VLOOKUP Auto-link for monday.com Looking forward to see you!
Trying to find out if there is away to update a file that has been uploaded to a column. Is that possible? I looked into deleting the files but if I want to do that it appears I need to delete or clear out all the files. Which I do not want to do. It won’t work for our workflow. (How to remove / delete file from item via API) If I could update the file, then I’d be alright. But deleting them all is a no go. Is there a way to update files?
Hello, I am working on an API integration where I am using the API to create subItems and I need to add an update to one of the sub items. Is this possible via the API?
I make an API request to Monday to get all items with a specified email, if there are no matching items, I add a new item to a Monday board via our API and then shortly after (< 1 minute), I make a subsequent request via the API to get the column values of the item just created in the previous API call and the response doesn’t contain the item. If I wait a few minutes, then send the same API request, then the previously created item and it’s values are returned. So, I’m thinking that either the server isn’t updated by the time I make the second API request or the response is being cached. I tried sending the second request with ‘cache-control: no-store’ header hoping that it would get me the freshest result from the Monday board bu that didn’t seem to work and the result still did not contain the newly created item. The use case for this workflow is to prevent duplicate items from being added to the board so I would like to know if there is anything that I can do either through code
Now I can use this to get all users: {“query”: "query { users () … What can I do after the change described here:monday API docs
Having this issue on multiple boards and multiple connect-board ‘board-relation’ columns. Not sure when it became a problem. Per https://api.developer.monday.com/docs/connect#reading-the-connect-boards-column - the API should return the data.
Is there a way to filter boards by folder_id in a single query? Something like this query { board { board_folder_id (ids: 123456) …
First off, I need more customizability for a form which will create items in a Monday board so I am wanting to create my own in react. I am wondering if it would be best to create my own web app and use Mondays API to send data to a Monday Board OR if it is possible to add this react code to a Monday App so the form is hosted on Monday. If the ladder is the best route when I am creating an app I am unsure if this is considered an integration or board view. Also do you guys have open source code for your current integrated form? I would love to have a nice boiler plate to build off.
I was creating monday.com app, I just wanted to know how long does it take the app review process.
I just started with the SDK and needed some testing app to play with the SDK options. So I created a test app based on Vue v3.0 to use as a Board Views or Item Views. (I know @amit.lzkpa made simple app, but he used Vue 2.0) Hopefully other people will benefit from it as much as I did. Link: GitHub - kulaone/monday-vue
None of the components in the library - https://style.monday.com/ seem to match the look and feel of the normal monday.com tables and board views: I want to create a table like this. Maybe I am missing something I want my app to be able to work with data in tables like this, but I don’t want the user to have to create the table on their own. I’m a complete beginner and might be misunderstanding some of the functionality that is available to developers. Any ideas/suggestions?
Hello, I have scoured posts about the subject yet cannot find a suitable answer. I am trying to create items using the API in C# with already populated columns. I can, using the following query, make items with no information other than the title : "{\\"query\\":\\"mutation{ create_item(board_id: XXXXXXXXXX, group_id: XXXXX, item_name: XXXX){ id} }\\"}" However, adding column_values returns the Internal Server Error, even if it is empty. I have tried the following methods, just to show a few (None of them have worked of course) : "{\\"query\\":\\"mutation{ create_item(board_id: XXXXXXXXXX, group_id: XXXXX, item_name: XXXX, column_values: \\"{}\\"){ id} }\\"}" "{\\"query\\":\\"mutation{ create_item(board_id: XXXXXXXXXX, group_id: XXXXX, item_name: XXXX, column_values: \\"{\\"text\\":\\"151\\",\\"numbers\\":\\"1\\"}\\"){ id} }\\"}" {\\"query\\":\\"mutation{ create_item(board_id: XXXXXXXXXX, group_id: XXXXX, item_name: XXXX, column_values: "{\\"status\\": {\\"label\\":\\"Sign-Up\\"}}"){
Hi, What is max archived items per board? I made query. It returned 300 so I imply it is 1000 query { items_by_column_values (board_id: 829428879, limit: 700, page: 2, column_id: “pozice_ve_skladu”, column_value: “Skript mění RSV2”, state:archived) { id name state } }
Is there a way with the API to create new column of type Color and add the labels in the creation? I know there is no way to add labels via API after the column is created.
Hi, There are some integrations in the marketplace that I would like to develop and offer for free. Is there a policy prohibiting developers from publishing existing integrations? Those integrations hadn’t been developed by Monday.
When querying a board for its column values, like so: we get an error like this: but only when the board we’re querying is our biggest, most complex board. (We are having to archive the data every 2 months or else we exceed the limit for number of connected items.) If we use an identical query for a smaller board, it works perfectly fine. Please can we have a fix for this? These queries were working perfectly fine a month ago and now suddenly its overwhelming for the API. Many thanks
Hi, we are about to finalize the development of Jobflows.co - an application tracking system that is built on top of monday work OS and want to give you FREE early access for your feedback! (for a limited time) The first 10 monday users (companies with more than 50 employees) will be able to get Free access for 1 year! You can Sign up here Be the first to get access to jobflows app This opportunity will end by August 20, 2022 so hurry up. Here are some of the features we are about to introduce Sourcing - Post your jobs directly from your boards to multiple job boards - Linkedin, Indeed and more to expose your jobs to millions of potential candidates. Engage - Easily create a branded Careers page and social posts to attract candidates. Get application directly into a recruitment hub within your monday workspace. Pipeline - Create Collaborate and communicate internally and with your candidate through a customized recruitment pipeline. 4.Dashboard - Measure and improve your hiri
Hello. Can anyone help me with this one? I have this creation of item via c#. da is the date column id dueDate is “2022-08-16” string query = "{"query" : "mutation { create_item (board_id: " + boardId + “, group_id: \\"” + groupId + “\\" , item_name: \\"” + name + “\\", column_values: {\\"” + da + “\\": {text: \\"” + dueDate + “\\"}}) { id } }"}”; But respond an error which is {“errors”:[{“message”:“Parse error on "date" (STRING) at [1, 125]”,“locations”:[{“line”:1,“column”:125}]}],“account_id”:7398594}
Introducing the monday marketplace’s first end-to-end CRM solution, CarbonCRM Suite! CarbonCRM Suite for monday.com What is CarbonCRM and why did we create it? We built this app for various reasons, but mainly because there is no all-encompassing CRM solution within monday, aside from the monday Sales CRM product. When talking with users, they expressed the desire of wanting to retain the nature of their standard Work OS while being able to use a highly functional CRM. The templates available for “CRM and Sales” in the template center are a great start to a CRM, but you still have to do all of the setup, customization, automation creation, and structuring of your sales funnel. The CarbonCRM lifts the burdens of having to think out, layout, build, and set up your CRM by providing a CRM building block ready to be customized to your business and process. We wanted to make customer relationship management accessible to the community, and this is our way of delivering that.
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.