18 Apr 2024 02:36 AM - last edited on 18 Apr 2024 08:19 AM by MaciejNeumann
Currently, the Dynatrace API only supports retrieving Bizevents via the PUT method, not GET. This means you cannot directly fetch Bizevents using a standard GET request
"Inquire about alternative methods for exporting business events"
Solved! Go to Solution.
15 May 2024 07:48 PM - edited 16 May 2024 09:36 AM
yes you can query them through the DQL API
curl -X 'GET' \
'https://{environmentid}.apps.dynatrace.com/platform/storage/query/v1/query:execute?enrich=metric-metadata' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"query": "fetch bizevents \n| limit 10",
"maxResultRecords": 10,
"maxResultBytes": 1000000,
"fetchTimeoutSeconds": 60,
"requestTimeoutMilliseconds": 1000,
"enablePreview": true,
"defaultSamplingRatio": 1000,
"defaultScanLimitGbytes": 10
}'