Getting Data In

CSAM Reports - 500 ERROR

_joe
Contributor

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

 

Labels (1)
Tags (1)
0 Karma
Get Updates on the Splunk Community!

Detecting Brute Force Account Takeover Fraud with Splunk

This article is the second in a three-part series exploring advanced fraud detection techniques using Splunk. ...

Buttercup Games: Further Dashboarding Techniques (Part 9)

This series of blogs assumes you have already completed the Splunk Enterprise Search Tutorial as it uses the ...

Buttercup Games: Further Dashboarding Techniques (Part 8)

This series of blogs assumes you have already completed the Splunk Enterprise Search Tutorial as it uses the ...