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

Extracting Bizevents in v2

dff
Participant
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"

 

3 REPLIES 3

mark_bley
Dynatrace Champion
Dynatrace Champion

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

 

Hello Mark, could you help me, where is this api, I am looking in the swagger but I din´t find it 

@carlos_carreno it's the platform API, not environment API. Basically. https://<environment>.apps.dynatrace.com/platform/swagger-ui/index.html
You can find more information here:
https://developer.dynatrace.com/develop/access-platform-apis-from-outside/

Certified Dynatrace Master | Alanata a.s., Slovakia, Dynatrace Master Partner

Featured Posts