Forum Discussion
RogerSteinberg
6 years agoPost Patron
Update parameters through Powershell
Hello, I need help in creating a simple PowerShell script that will update my PBI report parameter. Body:
{
"updateDetails": [
{
"name": "EndDate",
"newValue": "2020-06-08"
...
- 6 years ago
I found it out:
# Update Parameters URL $urlUpdateParams = '/datasets/{datasetId}/Default.UpdateParameters' # Update Parameters Body $body = '{ "updateDetails": [ { "name": "EndDate", "newValue": "2020-06-14" }, { "name": "StartDate", "newValue": "2020-06-01" } ] }' $content = 'application/json' Invoke-PowerBIRestMethod -Url $urlUpdateParams -Method Post -Body $body -ContentType $content # Updates Dataset Parameters
lbendlin
6 years agoSuper User
Your API call is incomplete.
https://docs.microsoft.com/en-us/rest/api/power-bi/datasets/updateparameters (for regular workspaces)
https://docs.microsoft.com/en-us/rest/api/power-bi/datasets/updateparametersingroup (for Premium)
Note that you are not updating report parameters. You are updating dataset parameters.
- RogerSteinberg6 years agoPost Patron
I found it out:
# Update Parameters URL $urlUpdateParams = '/datasets/{datasetId}/Default.UpdateParameters' # Update Parameters Body $body = '{ "updateDetails": [ { "name": "EndDate", "newValue": "2020-06-14" }, { "name": "StartDate", "newValue": "2020-06-01" } ] }' $content = 'application/json' Invoke-PowerBIRestMethod -Url $urlUpdateParams -Method Post -Body $body -ContentType $content # Updates Dataset Parameters- roncruiser1 year agoPost Patron
Did you run this through Powershell?
- lbendlin1 year agoSuper User
yes, after authenticating, for example with Login-PowerBI