Closed Shaharbad closed 1 year ago
When using the CSV_DUMP export format, monetary amounts are in micros (1 millionth of the base unit): 3,480,653 / 1,000,000 = $3.48 1,7403 / 1,000,000 = $0.017 rounded to $0.02
Percentages are in the rate value: 0.118 * 100 = 11.8%
If you want a human-readable format, you can use TSV or Excel format when exporting.
When using the CSV_DUMP export format, monetary amounts are in micros (1 millionth of the base unit): 3,480,653 / 1,000,000 = $3.48 1,7403 / 1,000,000 = $0.017 rounded to $0.02
Percentages are in the rate value: 0.118 * 100 = 11.8%
If you want a human-readable format, you can use TSV or Excel format when exporting.
LEGEND! THANKS. could you please help me with filtering by Child Publisher network code? Here's my code:
report_job = {
'reportQuery': {
'dimensions': dimensions,
'adUnitView': 'FLAT',
'columns': [
'AD_EXCHANGE_LINE_ITEM_LEVEL_IMPRESSIONS',
'AD_EXCHANGE_LINE_ITEM_LEVEL_REVENUE',
'AD_EXCHANGE_LINE_ITEM_LEVEL_AVERAGE_ECPM',
'AD_EXCHANGE_TOTAL_REQUESTS',
'AD_EXCHANGE_MATCH_RATE',
],
'dimensionAttributes': [],
'customFieldIds': [],
'cmsMetadataKeyIds': [],
'customDimensionKeyIds': [],
'startDate': start_date,
'endDate': end_date,
'dateRangeType': 'CUSTOM_DATE',
'statement': None,
'reportCurrency': 'USD',
}
}
Hey Everyone,
I'm trying to use the API to retrieve some data from my account. I managed to successfully generate the report and see the data, however, when comparing to the UI generated report i see different value for some dimensions, i also have a problem with how values are displayed.
The problems I see are:
AD_EXCHANGE_LINE_ITEM_LEVEL_REVENUE
I see 17403 which I know is not correct, on the UI I see $0.02.AD_EXCHANGE_LINE_ITEM_LEVEL_AVERAGE_ECPM
I see the correct value but with no dot separator, I get 3480653, on the UI i see $3.48.AD_EXCHANGE_MATCH_RATE
i see 0.1186, on the UI i see 11.86%.How to make sure i see the same values on the API from the UI? Here's my code, I would appriciate any help: