Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Write Table now available in Qlik Cloud Analytics: Read Blog
cancel
Showing results for 
Search instead for 
Did you mean: 
Bobby_Tables
Contributor II
Contributor II

Google Analytics 4 - Return request token quota

The Google Analytics Data API has daily and hourly request limits, defined by tokens (https://developers.google.com/analytics/devguides/reporting/data/v1/quotas).

At the bottom of that developer guide (linked above), it is mentioned that "with each API request, you can specify "returnPropertyQuota": true in the request body to return the current property quota tokens status"

Has anybody had any experience with getting this from the Google Analytics 4 connector?

 

It is possible to add "returnPropertyQuota='true'" as a property within the query:

SELECT 
    dimension1,
    dimension2,
    dimension3,
    metric1
FROM RunReport
WITH PROPERTIES (
propertyName='properties/12345678',
dimensions='dimension1, dimension2, dimension3',
metrics='metric1',
dateRange='yesterday, today',
returnPropertyQuota='true'
);

 However it is not clear how to (or if it's possible to) then get the results.

Labels (3)
0 Replies