Actions
Create DataSet
Creates a new DataSet in your Domo instance. Once the DataSet has been created, data can then be imported into the DataSet.

Preview this Workflow on desktop
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
| Parameter | Description |
|---|---|
| Columns | Array of columns in the DataSet. A column consists of a column name and type. Valid types are STRING, DECIMAL, LONG, DOUBLE, DATE, and DATETIME.For example: |
| Description | Description of DataSet to create. |
| Name | Name of the DataSet to create. |
{
"id": "4405ff58-1957-45f0-82bd-914d989a3ea3",
"name": "Leonhard Euler Party",
"description": "Mathematician Guest List",
"rows": 0,
"columns": 0,
"schema": {
"columns": [
{
"type": "STRING",
"name": "Friend"
},
{
"type": "STRING",
"name": "Attending"
}
]
},
"owner": {
"id": 27,
"name": "DomoSupport"
},
"createdAt": "2016-06-21T17:20:36Z",
"updatedAt": "2016-06-21T17:20:36Z"
}
Was this page helpful?