Push Datasets - Datasets PostRowsInGroup

Belirtilen çalışma alanından belirtilen veri kümesi içinde belirtilen tabloya yeni veri satırları ekler.

Gerekli Kapsam

Dataset.ReadWrite.All

Sınırlamalar

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

URI Parametreleri

Name İçinde Gerekli Tür Description
datasetId
path True

string

Veri kümesi kimliği

groupId
path True

string

uuid

Çalışma alanı kimliği

tableName
path True

string

Tablo adı

İstek Gövdesi

Name Tür Description
rows

object[]

Veri kümesi tablosuna gönderilen veri satırları dizisi. Her öğe, anahtar-değer biçimi kullanılarak temsil edilen bir özellik koleksiyonudur.

Yanıtlar

Name Tür Description
200 OK

Tamam

Örnekler

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

Tanımlar

PostRowsRequest

Name Tür Description
rows

object[]

Veri kümesi tablosuna gönderilen veri satırları dizisi. Her öğe, anahtar-değer biçimi kullanılarak temsil edilen bir özellik koleksiyonudur.