cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Extracting Bizevents in v2

dff
Visitor
While you cannot directly specify the exact permission for capturing business events when generating an access token in Dynatrace

Extracting Bizevents in v2

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

 

dff_0-1713403592015.png

"Inquire about alternative methods for exporting business events"

 

1 REPLY 1

mark_bley
Dynatrace Pro
Dynatrace Pro

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
}'

 

Featured Posts