Push Datasets - Datasets PostRows
Aggiunge nuove righe di dati alla tabella specificata all'interno del set di dati specificato dall'area di lavoro personale.
Ambito obbligatorio
Dataset.ReadWrite.All
Limitazioni
- Questa chiamata API supporta solo set di dati push.
- Vedere Limitazioni dell'API REST di Power BI.
POST https://api.powerbi.com/v1.0/myorg/datasets/{datasetId}/tables/{tableName}/rows
Parametri dell'URI
Nome | In | Necessario | Tipo | Descrizione |
---|---|---|---|---|
dataset
|
path | True |
string |
ID del set di dati |
table
|
path | True |
string |
Il nome della tabella |
Corpo della richiesta
Nome | Tipo | Descrizione |
---|---|---|
rows |
object[] |
Matrice di righe di dati push in una tabella del set di dati. Ogni elemento è una raccolta di proprietà rappresentate usando il formato chiave-valore. |
Risposte
Nome | Tipo | Descrizione |
---|---|---|
200 OK |
OK |
Esempio
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
Definizioni
PostRowsRequest
Nome | Tipo | Descrizione |
---|---|---|
rows |
object[] |
Matrice di righe di dati push in una tabella del set di dati. Ogni elemento è una raccolta di proprietà rappresentate usando il formato chiave-valore. |