Trying to set the timeout property for my api calls to be longer than 30 seconds in Power BI data flow.
Source = Json.Document(Web.Contents("https://[apiservice].com",[RelativePath=thepath],[Timeout=#duration(0,0,30,0)])),
The above results in no records ever returning. Removing the Timeout statement does allow records to be returned, but seems to drop records due to timeouts which I am trying to solve in the above.
the default timeout is 100 seconds, maybe try and increase it to more than that.