Comments
-
Currently there isn't but I'd recommend logging an idea in the idea exchange to get this on their radar.
-
Last I checked, Amazon doesn't expose the purchase orders via their Vendor Central API so you can't pull that information via the connector.
-
I'd recommend trying using partitions so that if you have updated data or data being removed it'll take into account. You'll just need to make sure your entire data for each partition is being ingested otherwise you may lose data. If you have a specific key you can identify unique rows with then using an upsert may be an…
-
I run into this issue consistently as well. You can log an idea in the Idea Exchange to increase the timeout of the IDE. Ideally they allow us to develop locally and utilize our own IDEs.
-
Can you provide a sample/anonymized data table of how your data is structured to help us better understand your use case?
-
What are you wanting to do with Microsoft Teams as part of your workflow?
-
I don't believe there is. I'd recommend logging a ticket in the idea exchange. Alternatively you can redo your underlying data architecture to give yourself more control over how the data is displayed by using a custom period over period ETL. I've written about this here:…
-
What type of error are you getting? APIs can have many different types of errors with different resolutions. Are you reviewing the API's documentation to pass authentication and requests properly? The JSON No Code connector is one I'll utilize for connecting to another JSON API endpoint
-
How did it not work? Did it return the wrong numbers or not return anything?
-
If they're always in the same position with the same ' - ' separator you can use SPLIT_PART SPLIT_PART(`string`, ' - ', 7) SPLIT_PART(`string`, ' - ', 8)
-
I'd recommend reviewing the KB article about embedding content outside of Domo: This outlines your options and how to get it setup.
-
I'd recommend logging a ticket with Domo Support for them to look into their connector.
-
How are you calling this API? Are you using a Jupyter Notebook or a workflow? A Python tile in an ETL?
-
You'll need to log a ticket with Domo Support to have them assist you with this backend issue.
-
The supported pydomo package doesn't have a way to do this however you can monitor the network traffic when saving or creating a new SQL dataflow to get an idea of the API endpoints you can call with a package like requests to call these endpoints. You'll need to make sure you have a developer token and pass it along as a…
-
You could leverage the DomoStat datasets to get dataflow inputs and dataflow outputs, join them together where the DataFlow IDs are the same and the dataset IDs are the same, this will give you a list of recursive dataflows.
-
You could leverage the DomoStat datasets to get dataflow inputs and dataflow outputs, join them together where the DataFlow IDs are the same and the dataset IDs are the same, this will give you a list of recursive dataflows.
-
@paddylillard - Glad this post brought you a solution! Thanks for sharing the steps you used to find the proper email address. It'll be helpful for others who are having this same issue.
-
When a date is imported into Domo it's assumed that it's UTC. If you want to treat it as a date then you'll need to import it as a date. If the date doesn't align with what you're expecting due to the time zones then you'll need to use a Timezone transform and import it with the timezone your source system is set with.…
-
In your schema you can define it as a STRING instead of a DATETIME so it'll import the characters exactly as defined.
-
Changing ownership of the API Clients isn't possible as this isn't a security best practice. Due to your former user having access to these codes they would technically still have access to them and could potentially still access your platform. I'd highly recommend cycling out these credentials and creating new ones. Yes…
-
it’s likely the case that one of your datasets has duplicate key columns causing your rows to get duplicated. Double check your join condition to make sure it’s joining correctly
-
As this is an error with the Campaigns product I'd recommend logging a ticket for Domo Support to take a look into this error.
-
As this is an error with the Campaigns product I'd recommend logging a ticket for Domo Support to take a look into this error.
-
If your AI queries are inconsistent then it likely doesn't have enough context to give you a valid response back. Do you have any other fields you can attempt to include in your dictionary that give more context? Is there more data you can train it on?
-
Since there isn't a connector you might try utilizing the Dataverse Web API and the JSON No Code connector to pull the data directly via the API.
-
If you inspect the developer console is it throwing any errors? I've recently seen errors where an app won't load in an embed due to the Content Security Policy directive. You may need to log a ticket with Domo Support [Report Only] Refused to frame '' because an ancestor violates the following Content Security Policy…
-
I'd recommend using a tool like Postman to test out your API to see if it's returning valid JSON for a full request rather than using the preview.
-
You can't make the dashboard wider unless you select auto. As for the alignment issue I reccomend moving your cards down to a new row to see if that will allow them to reset to the proper width.
-
Since you're usign Python I'd recommend utilizing the pydomo package which has examples on how to rename datasets.