Do we have any API for creating a SQL Dataflow in DOMO through python?

I am working on SQL transformations within Domo and have a requirement to create a SQL dataflow programmatically from a code engine using a Python script via the API. Does Domo provide any API support for creating dataflows?
Answers
-
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 the X-DOMO-Developer header.
**Was this post helpful? Click Agree or Like below**
**Did this solve your problem? Accept it as a solution!**0 -
@Bhargavi - Although I haven't done this specific thing myself, I believe you can write code in Python using Jupyter Workspaces in Domo, and make SQL calls. Consider the following…
import domojupyter as domo
import pandas as pd
import pandasql as ps
# Replace 'dataset_id' with your actual dataset ID from Domo
dataset_id = 'YOUR_DATASET_ID'
df = domo.read_dataframe(dataset_id)
# Example SQL query
query = """
SELECT column1, column2
FROM df
WHERE column3 > 100
"""
result = ps.sqldf(query, locals())
print(result)This would use a dataset from Domo and handle it like a SQL table using pandasql.
** Was this post helpful? Click Agree or Like below. **
** Did this solve your problem? Accept it as a solution! **0
Categories
- All Categories
- 2K Product Ideas
- 2K Ideas Exchange
- 1.6K Connect
- 1.3K Connectors
- 311 Workbench
- 6 Cloud Amplifier
- 9 Federated
- 3.8K Transform
- 655 Datasets
- 115 SQL DataFlows
- 2.2K Magic ETL
- 811 Beast Mode
- 3.3K Visualize
- 2.5K Charting
- 80 App Studio
- 45 Variables
- 771 Automate
- 190 Apps
- 481 APIs & Domo Developer
- 77 Workflows
- 23 Code Engine
- 36 AI and Machine Learning
- 19 AI Chat
- AI Playground
- AI Projects and Models
- 17 Jupyter Workspaces
- 410 Distribute
- 120 Domo Everywhere
- 280 Scheduled Reports
- 10 Software Integrations
- 142 Manage
- 138 Governance & Security
- 8 Domo Community Gallery
- 48 Product Releases
- 12 Domo University
- 5.4K Community Forums
- 41 Getting Started
- 31 Community Member Introductions
- 113 Community Announcements
- 4.8K Archive