Hi We are having a trouble with an adwords API and wondering if you can help us. We called adwords api url ' https://adwords.google.com/api/adwords/reportdownload/v201603'. This api was working until yesterday(2016/08/31), but stop working today. We read the reference pages and tried to figure out, but so far we only got 'api error' in response. Here are the links for these pages. https://developers.google.com/adwords/api/docs/guides/reporting?hl=en https://adwords.google.com/api/adwords/reportdownload/v201603/reportDefinition.xsd The below is the we wrote, ``` API_VERSION='v201603' REQUEST='__rdxml=<reportDefinition xmlns=" https://adwords.google.com/api/adwords/cm/'${API_VERSION}'"> <selector> <fields>Ctr</fields> <fields>Date</fields> </selector> <reportName>ACCOUNT_PERFORMANCE_REPORT</reportName> <reportType>ACCOUNT_PERFORMANCE_REPORT</reportType> <dateRangeType>LAST_MONTH</dateRangeType> <downloadFormat>XML</downloadFormat> </reportDefinition>' SIZE=${#REQUEST} echo ${REQUEST} | \ curl -X POST \ -H 'Content-Type: application/x-www-form-urlencoded; charset=UTF-8' \ -H 'Authorization: Bearer '${REFREASH_TOKEN} \ -H 'developerToken: '${DEVELOPER_TOKEN} \ -H 'clientCustomerId: '${ACCOUNT_ID} \ -H 'skipReportHeader: False' \ -H 'skipColumnHeader: False' \ -H 'skipReportSummary: False' \ -H 'includeZeroImpressions: False' \ -H 'Host: adwords.google.com' \ -H 'Content-Length: '${SIZE} \ -H 'Expect: 100-continue' \ -H 'Connection: Keep-Alive' \ --data-urlencode @- \ --verbose \ https://adwords.google.com/api/adwords/reportdownload/${API_VERSION} ``` and after executing the code I get the below in response ``` <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <reportDownloadError> <ApiError> <type>ReportDownloadError.MISSING_PARAMETER</type> <trigger>Missing report definition</trigger> <fieldPath/> </ApiError> </reportDownloadError> ``` I'm hoping if you can give us instruction on how to call report download api. Thanks in advance,
-- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/posts =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API Forum" group. To post to this group, send email to adwords-api@googlegroups.com To unsubscribe from this group, send email to adwords-api+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en --- You received this message because you are subscribed to the Google Groups "AdWords API Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to adwords-api+unsubscr...@googlegroups.com. Visit this group at https://groups.google.com/group/adwords-api. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/4855f1a1-2812-4a00-a0af-42009ccb22e9%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.