Push Datasets - Datasets PostRows
Çalışma alanım'dan belirtilen veri kümesi içinde belirtilen tabloya yeni veri satırları ekler.
Gerekli Kapsam
Dataset.ReadWrite.All
Sınırlamalar
- Bu API çağrısı yalnızca gönderme veri kümelerini destekler.
- Bkz. Power BI REST API sınırlamaları.
POST https://api.powerbi.com/v1.0/myorg/datasets/{datasetId}/tables/{tableName}/rows
URI Parametreleri
Name | İçinde | Gerekli | Tür | Description |
---|---|---|---|---|
dataset
|
path | True |
string |
Veri kümesi kimliği |
table
|
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 özellikler koleksiyonudur. |
Yanıtlar
Name | Tür | Description |
---|---|---|
200 OK |
Tamam |
Örnekler
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
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 özellikler koleksiyonudur. |