Actions
Update DataSet Metadata
Updates the specified DataSet’s metadata.

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: |
| DataSet ID | The ID of the DataSet. |
| Description | The description of the updated DataSet. |
| Name | The name of the updated DataSet. |
{
"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": []
}
]
}
Was this page helpful?