Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
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
Solved! Go to Solution.
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
Proud to be a 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
Proud to be a Super User!
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 3 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 5 | |
| 5 | |
| 4 |