Row operations
Published: November 1, 2015
Updated: February 3, 2016
A Row resource path is a collection of rows for a Table.
The Power BI REST API has the following Row operations:
- Add Rows: Adds Rows to a Table in a Dataset.
- Delete Rows: Deletes Rows from a Table in a Dataset.
Row JSON
Rows have a collection of Column names and values.
{
"rows":
[
{"column_name1": value, "column_name2": value, "column_name3": value, ...}
]
}
See also
Show: