A PowerShell script that will trigger a refresh on a Dataset in Power BI. The script will show ‘Completed’ and ‘Failed’ with error.
It is set to the task parameters so you can easily change/update the value without editing the script.
Variable Name | Value |
---|---|
clientid | You can get this from your App that you created in app registration |
clientsecret | You can get this from the your App registration via Certificates & secrets |
tenantid | You can get this from the your App registration |
Copy the script below to paste into your Integrate PowerShell Core Task.
$clientid = "" # You can get this from the your App registration
$clientsecret = "" # You can get this from the your App registration via Certificates & secrets
$tenantid = "" # You can get this from the your App registration
#Obtaining Access Token
$scope = "https://analysis.windows.net/powerbi/api/.default"
$headers = New-Object "System.Collections.Generic.Dictionary[[String],[String]]"
$headers.Add("Content-Type", "application/x-www-form-urlencoded")
$body = "client_id=$clientid&client_secret=$clientsecret&scope=$scope&grant_type=client_credentials"
$response = Invoke-RestMethod "https://login.microsoftonline.com/$tenantid/oauth2/v2.0/token" -Method 'POST' -Headers $headers -Body $body
$token = $response.access_token
$token = "Bearer $token"
#Refresh dataset
$authHeader = @{
'Content-Type'='application/json'
'Authorization'= $token
}
$groupsPath = ""
if ($groupID -eq "me") {
$groupsPath = "myorg"
} else {
$groupsPath = "myorg/groups/$groupID"
}
$uri = "https://api.powerbi.com/v1.0/$groupsPath/datasets/$dataset/refreshes"
Invoke-RestMethod -Uri $uri -Headers $authHeader -Method Post
$statusURL = "https://api.powerbi.com/v1.0/$groupsPath/datasets/$dataset/refreshes"
do {
# Send the GET request to check the status
$response = Invoke-RestMethod $statusURL -Method 'GET' -Headers $authHeader
# Retrieve the status from the response
$status = $response.value[0].status
# Output the current status
Write-Output "Current status: $status"
# Wait for a few seconds before the next check
Start-Sleep -Seconds 5
} while ($status -ne 'Completed' -and $status -ne 'Failed')
Write-Output "Status check complete. Final status: $status"
# Check if the refresh failed
if ($status -eq 'Failed') {
# Retrieve the error message from the response
$errorMessage = $response.value[0].serviceExceptionJson
Write-Output "Failed to refresh the Dataset. $errorMessage"
}