Table operations
Published: November 1, 2015
Updated: February 3, 2016
A Table resource path is a collection of Table objects of a particular Dataset. A Table has Rows and Columns that contain data. A Column has a name and dataType.
The Power BI REST API has the following Table operations:
- Get Tables: Returns a JSON list of Tables for the specified Dataset.
- Update Table Schema: Updates the schema of an existing Table.
Table JSON
Tables have a name and a collection of Column objects. A Column has a name and dataType.
{
"name": "table_name",
"columns":[
{
"name": "column_name",
"dataType": "data_type"
},
…
]
}
See also
Show: