共用方式為


Push Datasets - Datasets PostRows

[我的工作區] 將新的資料列新增至指定資料集內的指定資料表。

必要範圍

Dataset.ReadWrite.All

限制

POST https://api.powerbi.com/v1.0/myorg/datasets/{datasetId}/tables/{tableName}/rows

URI 參數

名稱 位於 必要 類型 Description
datasetId
path True

string

資料集識別碼

tableName
path True

string

資料表名稱

要求本文

名稱 類型 Description
rows

object[]

推送至資料集資料表的資料列陣列。 每個元素都是使用索引鍵/值格式表示的屬性集合。

回應

名稱 類型 Description
200 OK

確定

範例

Example

Sample Request

POST https://api.powerbi.com/v1.0/myorg/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[]

推送至資料集資料表的資料列陣列。 每個元素都是使用索引鍵/值格式表示的屬性集合。