-
Domo Search API?
Hi All, I'm working on a dynamic landing page and I am trying to make a 'universal search' within a Domo brick where users can type in whatever they are looking for and return back cards/dashboards that are relevant to their area of the business. I realize Domo already has a search, but I want to build off of that same…
-
Domo API to MS-SQL
I tried unsuccessfully to find an example of pulling a Domo dataset directly to MS-SQL via the API. So I created my own. I am not a python coder but my script works just fine. Does anyone have a version of this subroutine that does not require defining the column names (ie header)? #Retrieve dataset from Domo API def…
-
Dataset with custom managed attributes for users
Domo now allows custom attributes to be created to capture additional user details. But there seems to be no dataset that provide details on these custom attributes. It would be useful if a dataset/api/other consumption method was available through which this detail is accessible. As this will greatly help us to validate…
-
'None' response when calling Domo SDK to append data into dataset
I am trying to append data into a dataset I created using the API but I get this error: Failed to import data into Domo: 'NoneType' object is not subscriptable. The dataset is created successfully but then I get that error message when trying to append the data into it. After some troubleshooting I found that the 'None'…
-
Adding a Python Function or Google Translation into the Magic ETL
Hi, I am currently pulling Datas of Twitter's feed of specific words from the twitter connector on DOMO. As most of the tweets are in Japanese, i was wondering if there a function/calculated field i could use to translate those japanese tweets on the Magic ETL. Do guide me on the process if it is possible. Thank you!
-
Domo Custom Connector: 3 Design Tips for Building an Effective Product
If you are struggling to build a viable and effective custom connector, a team of Domo users just published an amazing article on Graphable that will help you solve your problem! 💥CODE SAMPLES INCLUDED💥 The Graphable team is a strategic partner for Domo Implementations and Custom Solutions.
-
Is there a way to disable auto refresh of a dataset?
I want to stop an API data set from ingesting further information going forward as it is getting replaced with a different dataset. Is there a way to stop the data set from making API calls and ingest new information?
-
API Connector update via Email/Announcement
Whenever there's an API connector update, it'd be nice if we can opt-in to receive the updates via email or some form of communication. Recently my team has been working off of the Facebook and Pinterest API connectors and when the API updates, it would change the column names which is problematic for us.
-
Trigger a dataset update via python using a post call
I am currently successfully triggering a dataset update from Snowflake to Domo via python using the following code: import requests #list of dataset ids and stream ids for the Snowflake>Domo connectionsguids = { 'datasetID': 'StreamID', 'DatasetID2': 'StreamID2', } #Does the work of kicking off updates for all Domo…
-
Domo Simple API - Insert null value using json
It seems Simple API does not accept null value in json format. How can I insert null in a column using API? I tried "" and it works but this recognizes the column as string, if I need a int column or date column, this approach it's not what I'm looking for. Thanks!