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

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
MegaOctane1
Helper I
Helper I

REST API web query fails to refresh when published, integrate retry

I have a function which is invoked by another query, and it repeats for each customer number, to retrieve data from an API. it works fine on desktop, but when published it throws the error: "The underlying connection was closed. An unexpected error occured on send".

I want to add a retry to the fuction or query, and not sure how to do it 

this is my function, and i have deleted/changed a the confidential information:

 

 

let
  source = (CustomerNumber) =>

    let
      
      host = "https://hiddeninformation.com/api/customer/",
      Path = CustomerNumber & "/invoices?supplierId=99999",

      Source = Json.Document(
        Web.Contents(
          host, 
          [ 
            RelativePath = Path,
            Headers = [
              #"verification-code" = "abcdefgh", 
              #"key"  = "123456789"
            ]
          ]
        )
      )
.
.
.
.
.
in source

 

 

1 ACCEPTED SOLUTION
PhilipTreacy
Super User
Super User

Hi @MegaOctane1 

 

Check your returned data for something that you know should be there, if it isn't then call the function again.  Something like this

 

 

.
.
WebQuery = fxWebFunction(CustomerNumber),
CheckQueryResult = if WebQuery[SomeValue] = TRUE then WebQuery else fxWebFunction(CustomerNumber),
WebQueryResult = if CheckQueryResult[SomeValue] = TRUE then CheckQueryResult else "Error",
.
.

 

 

I obviously don't know what value you need to test for to see of the query succeeded, you'll have to insert that into the code.

 

There is try..otherwise built into PQ which is meant to catch errors but it doesn't always work as expected (it doesn't trigger on some errors), and it may not work for you anyway in this scenario as the error is from the web server and may not filter through to the PQ code as an actual error condition.

 

regards

 

Phil



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


View solution in original post

1 REPLY 1
PhilipTreacy
Super User
Super User

Hi @MegaOctane1 

 

Check your returned data for something that you know should be there, if it isn't then call the function again.  Something like this

 

 

.
.
WebQuery = fxWebFunction(CustomerNumber),
CheckQueryResult = if WebQuery[SomeValue] = TRUE then WebQuery else fxWebFunction(CustomerNumber),
WebQueryResult = if CheckQueryResult[SomeValue] = TRUE then CheckQueryResult else "Error",
.
.

 

 

I obviously don't know what value you need to test for to see of the query succeeded, you'll have to insert that into the code.

 

There is try..otherwise built into PQ which is meant to catch errors but it doesn't always work as expected (it doesn't trigger on some errors), and it may not work for you anyway in this scenario as the error is from the web server and may not filter through to the PQ code as an actual error condition.

 

regards

 

Phil



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

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

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.