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

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
FrankT
Advocate II
Advocate II

API - Default.GetBoundGatewayDataSources

For some of my datasets the Get Bound Gateway Datasources operation will fail because the field 'isOnPremGatewayRequired' of the record wasn't found. At first sight this seems to be a bug!?

 

 [DataSource.Kind="PowerBIRESTAPI"]
 PowerBIRESTAPI.BoundGatewayDataSources = () =>
let
    source = Json.Document(Web.Contents("https://api.powerbi.com/v1.0/myorg/datasets")),
    value = Table.FromRecords(source[value]),
 selected = Table.SelectColumns(value, {"id", "name"}),
    BoundGatewayDataSources = Table.AddColumn(selected, "Call", each try Json.Document(Web.Contents( "https://api.powerbi.com/v1.0/myorg/datasets/" & [id]&"/Default.GetBoundGatewayDataSources", [
      Headers = [
                #"Content-type" = "application/json"
            ]])) otherwise null)
in
    BoundGatewayDataSources;
 

Screenshot.JPG

 

Expression.Error: The field 'isOnPremGatewayRequired' of the record wasn't found.
Details:
    id=25ec7826-1da2-4799-9dff-db84983ef86d
    name=RealTime
    addRowsAPIEnabled=TRUE
    configuredBy=XXXXXXXXXXXXX
    isRefreshable=TRUE
    isEffectiveIdentityRequired=FALSE
    isEffectiveIdentityRolesRequired=FALSE
 
Expression.Error: The field 'isOnPremGatewayRequired' of the record wasn't found.
Details:
    id=7ea173b5-1813-4bd9-9def-b40ecf89d0a3
    name=Report Usage Metrics Model
    addRowsAPIEnabled=FALSE
    configuredBy=XXXXXXXXXXXXX
    isRefreshable=FALSE
    isEffectiveIdentityRequired=FALSE
    isEffectiveIdentityRolesRequired=FALSE

 

The affected records seem to be either realtime or usage metrics or workbooks (Excel Services).

 

Indeed these records do not have the field isOnPremGatewayRequired.

 

screenshot2.JPG

 

Any ideas?

3 REPLIES 3
v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @FrankT,

 

What data did you expect from this operation? Why not deleting the errors?

 

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Naturally, I expect the API to give me the record fields available for each dataset. I do not ask for the missing field.

Furthermore, an error is returned despite " try ... otherwise"

Searching for help on this very topic - have you identified a workaround?

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Kudoed Authors