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.