Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Dragon496
Helper II
Helper II

Get-activityevents the continuation URL is sometimes going to the wrong address!

I am aware my subject title is quite a statement-let me explain…

The following is a snippet from my code

 

if (!$result.continuationUri)
{
Add-Content -Path 'debug.txt' -Value ' next activity call '
Add-Content -Path 'debug.txt' -Value $activityAPIUrl
$result = Invoke-PowerBIRestMethod -Url $activityAPIUrl -method Get | ConvertFrom-Json
}
else {
Add-Content -Path 'debug.txt' -Value ' next activity continuation call '
Add-Content -Path 'debug.txt' -Value $result.continuationUri
$result = Invoke-PowerBIRestMethod -Url $result.continuationUri -method Get | ConvertFrom-Json
}

 

 

Now when it fails, I have noticed the following:-
firstly it only fields when making the call using the continuation token

 

Secondly, when it fails, it is calling the wrong URL.

 

Please note, from the code above, when there is a continuationUri, then this URL is used in the next call.

 

The original URL used is:-

admin/activityevents?startDateTime=…

 

The continuationUri, when it works is:-

https://api.powerbi.com/v1.0/myorg/admin/activityevents?continuationToken='LDIwMjMtMDIt…

 

However, when it fails, the continuationUri is:-

https://wabi-uk-south-b-primary-redirect.analysis.windows.net/v1.0/myorg/admin/activityevents?contin...

 

Any idea why the continuationUri is sometimes incorrect?

 

Thanks

0 REPLIES 0

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.