Hello all,
I am wondering if anyone has run into an issue where they receive a "500 error" on some large reports (small reports work fine)? The only feedback I got from the cSAM admin was to add a time out value in Microsoft PowerQuery, doesn't quite seem to relate to CURL though.
personal_access_token = "MyRealToken",
request_timeout_in_minutes = 10, // Specify your timeout value here
data = Table.FromRecords(
Json.Document(
Web.Contents(
csam_api_endpoint_url,
[
Headers =
[
#"Authorization"="Bearer " & personal_access_token,
#"Content-Type" = "application/json"
],
Timeout = #duration(0, 0, request_timeout_in_minutes, 0)
]
)
)
)
in
data