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
rsimcoe
Helper I
Helper I

Data Connector and Post Requests

Hello,

 

I am trying to build a data connector for our budgeting software to connect with Power BI. I have successfully be able to execute api calls but I am struggling to get the data connector to work. So far I have gotten to step 3 in the Tripin tutorial. https://docs.microsoft.com/en-us/power-query/samples/trippin/3-navtables/readme . My code is below for the implementation.

 

//
// Implementation
//

[DataSource.Kind="Adaptive"]
shared Adaptive.Feed = Value.ReplaceType(AdaptiveImpl, type function (url as Uri.Type) as any);

[DataSource.Kind="Adaptive", Publish="Adaptive.Publish"]
shared Adaptive.Contents = Value.ReplaceType(AdaptiveNavTable, type function (url as Uri.Type) as any);

AdaptiveImpl =(url as text) =>
let
source = Web.Contents(url),
xml = Xml.Tables(source)
in
xml;

AdaptiveNavTable = (url as text) as table =>
let
source = #table({"Name", "Data", "ItemKind", "ItemName", "IsLeaf"}, {
{"Sheets", GetSheetsTable(url), "Table", "Table", true}
}),
navTable = Table.ToNavigationTable(source, {"Name"}, "Name", "Data", "ItemKind", "ItemName", "IsLeaf")
in
navTable;


GetSheetsTable = (url as text) as table =>
let
source = Adaptive.Feed(url),
output = source{0}[output],
sheets = output{0}[sheets],
#"Unpivoted Columns" = Table.UnpivotOtherColumns(sheets, {}, "Attribute", "Value"),
#"Expanded Value" = Table.ExpandTableColumn(#"Unpivoted Columns", "Value", {"Attribute:id", "Attribute:name", "Attribute:prefix", "Attribute:description", "Attribute:isGlobal", "Attribute:recalculateOnDemand"}, {"Value.Attribute:id", "Value.Attribute:name", "Value.Attribute:prefix", "Value.Attribute:description", "Value.Attribute:isGlobal", "Value.Attribute:recalculateOnDemand"}),
#"Removed Columns" = Table.RemoveColumns(#"Expanded Value",{"Value.Attribute:description", "Value.Attribute:isGlobal", "Value.Attribute:recalculateOnDemand"}),
#"Reordered Columns" = Table.ReorderColumns(#"Removed Columns",{"Value.Attribute:id", "Value.Attribute:name", "Value.Attribute:prefix", "Attribute"})
in
#"Reordered Columns";

 

In order to call the api, I need to pass the Contents to the Web.Contents function. There is an example below of what I am doing.

 

source = Web.Contents(url, [Contents=Extension.Contents("exportSheets.xml")])

 

For each endpoint request, I will have to pass a different xml file to call the api. I am struggling with how to include this in the custom data connector. I highlighted sections above that I believe need to be edited, I am just not sure what to do. 

 

I thought I needed to pass a different two variables to the AdaptiveImpl but when trying to do this I have continued to get errors.

 

Any help would be greatly appreciated. 

 

Thanks,

 

1 REPLY 1
v-frfei-msft
Community Support
Community Support

Hi @rsimcoe ,

 

To be honest, I am not an expert of this. Hope other super user can help you.

 

 

 

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

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Top Solution Authors