I tried to extract the report data via api, however can not download the data and the message "ReportDownloadError.MISSING_PARAMETER". What should I do to troubleshoot this error?
--------------------------------------------------------
HTTP HEADER
Authorization:Bearer xxxxxxxxxxxxxxxxxxxxxxxxxx
clientCustomerId:xxx-xxx-xxxx
Content-Type:application/x-www-form-urlencoded
developerToken:xxxxxxxxxxxxxxxxxxxxxxxx
--------------------------------------------------------
Request content
<reportDefinition xmlns="
https://adwords.google.com/api/adwords/cm/v201509">
<selector>
<fields>CampaignId</fields>
<fields>Id</fields>
<fields>Impressions</fields>
<fields>Clicks</fields>
<fields>Cost</fields>
<predicates>
<field>Status</field>
<operator>IN</operator>
<values>ENABLED</values>
<values>PAUSED</values>
</predicates>
</selector>
<reportName>Custom Adgroup Performance Report</reportName>
<reportType>ADGROUP_PERFORMANCE_REPORT</reportType>
<dateRangeType>LAST_7_DAYS</dateRangeType>
<downloadFormat>CSV</downloadFormat>
</reportDefinition>
--------------------------------------------------------