Skip to main content

Create DataSet

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

Parameters

ParameterDescription
ColumnsArray 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: [
{  "type": "STRING",  "name": "Friend"},{  "type": "STRING",  "name": "Attending"}
]
DescriptionDescription of DataSet to create.
NameName of the DataSet to create.

Example Output

{
"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"
}

Workflow Library Example

Create Dataset with Domo and Send Results Via Email

Workflow LibraryPreview this Workflow on desktop