Update DataSet Metadata
Updates the specified DataSet’s metadata.
Parameters
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: [ { "type": "STRING", "name": "Friend" }, { "type": "STRING", "name": "Attending" } ] |
DataSet ID | The ID of the DataSet. |
Description | The description of the updated DataSet. |
Name | The name of the updated DataSet. |
Example Output
{
"id": "4405ff58-1957-45f0-82bd-914d989a3ea3",
"name": "Leonhard Euler Birthday Bash",
"description": "VIP 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:48:41Z",
"pdpEnabled": true,
"policies": [
{
"id": 8,
"type": "user",
"name": "Only Show Attendees",
"filters": [
{
"column": "Attending",
"values": [
"TRUE"
],
"operator": "EQUALS",
"not": false
}
],
"users": [
27
],
"groups": []
}
]
}
Workflow Library Example
Update Dataset Metadata with Domo and Send Results Via Email
Preview this Workflow on desktop