Push Datasets - Datasets PostRowsInGroup
從指定的工作區,將新的資料列新增至指定資料集內的指定資料表。
必要範圍
Dataset.ReadWrite.All
限制
- 此 API 呼叫僅支援 推送資料集。
- 請參閱 Power BI REST API 限制。
POST https://api.powerbi.com/v1.0/myorg/groups/{groupId}/datasets/{datasetId}/tables/{tableName}/rows
URI 參數
名稱 | 位於 | 必要 | 類型 | Description |
---|---|---|---|---|
dataset
|
path | True |
string |
資料集識別碼 |
group
|
path | True |
string uuid |
工作區識別碼 |
table
|
path | True |
string |
資料表名稱 |
要求本文
名稱 | 類型 | Description |
---|---|---|
rows |
object[] |
推送至資料集資料表的資料列陣列。 每個元素都是使用索引鍵/值格式表示的屬性集合。 |
回應
名稱 | 類型 | Description |
---|---|---|
200 OK |
確定 |
範例
Example
Sample Request
POST https://api.powerbi.com/v1.0/myorg/groups/f089354e-8366-4e18-aea3-4cb4a3a50b48/datasets/cfafbeb1-8037-4d0c-896e-a46fb27ff229/tables/Product/rows
{
"rows": [
{
"ProductID": 1,
"Name": "Adjustable Race",
"Category": "Components",
"IsCompete": true,
"ManufacturedOn": "07/30/2014"
},
{
"ProductID": 2,
"Name": "LL Crankarm",
"Category": "Components",
"IsCompete": true,
"ManufacturedOn": "07/30/2014"
},
{
"ProductID": 3,
"Name": "HL Mountain Frame - Silver",
"Category": "Bikes",
"IsCompete": true,
"ManufacturedOn": "07/30/2014"
}
]
}
Sample Response
定義
PostRowsRequest
名稱 | 類型 | Description |
---|---|---|
rows |
object[] |
推送至資料集資料表的資料列陣列。 每個元素都是使用索引鍵/值格式表示的屬性集合。 |