DestinationUrlPerformanceReport is always empty. Has there been an recent changes to that report?
DestinationUrlPerformanceReport is always empty. All other reports are working as expected.
The xml submitted is the following
<s:Envelope xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header xmlns="https://bingads.microsoft.com/Reporting/v13">
<Action mustUnderstand="1">SubmitGenerateReport</Action>
<AuthenticationToken i:nil="false">ACCESS_TOKEN</AuthenticationToken>
<CustomerAccountId i:nil="false">ACCOUNT_ID</CustomerAccountId>
<CustomerId i:nil="false">CUSTOMER_ID</CustomerId>
<DeveloperToken i:nil="false">DEVELOPER_TOKEN</DeveloperToken>
</s:Header>
<s:Body>
<SubmitGenerateReportRequest xmlns="https://bingads.microsoft.com/Reporting/v13">
<ReportRequest i:nil="false" i:type="DestinationUrlPerformanceReportRequest">
<Format i:nil="false">Xml</Format>
<FormatVersion i:nil="false">2.0</FormatVersion>
<ReturnOnlyCompleteData i:nil="false">true</ReturnOnlyCompleteData>
<!--These fields are applicable if the derived type attribute is set to AccountPerformanceReportRequest-->
<!--These fields are applicable if the derived type attribute is set to DestinationUrlPerformanceReportRequest-->
<Aggregation>Summary</Aggregation>
<Columns i:nil="false">
<DestinationUrlPerformanceReportColumn>Clicks</DestinationUrlPerformanceReportColumn>
<DestinationUrlPerformanceReportColumn>DestinationUrl</DestinationUrlPerformanceReportColumn>
</Columns>
<Scope i:nil="false">
<AccountIds i:nil="false" xmlns:a1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<a1:long>ACCOUNT_ID</a1:long>
</AccountIds>
</Scope>
<Time i:nil="false">
<CustomDateRangeEnd i:nil="false">
<Day>31</Day>
<Month>8</Month>
<Year>2024</Year>
</CustomDateRangeEnd>
<CustomDateRangeStart i:nil="false">
<Day>1</Day>
<Month>8</Month>
<Year>2024</Year>
</CustomDateRangeStart>
</Time>
<!--These fields are applicable if the derived type attribute is set to BudgetSummaryReportRequest-->
</ReportRequest>
</SubmitGenerateReportRequest>
</s:Body>
</s:Envelope>
It gives a response like this
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Header>
<h:TrackingId xmlns:h="https://bingads.microsoft.com/Reporting/v13">75c956cb-33a2-474c-a1a6-0599da0d5ac2</h:TrackingId>
</s:Header>
<s:Body>
<SubmitGenerateReportResponse xmlns="https://bingads.microsoft.com/Reporting/v13">
<ReportRequestId>REQUEST_ID</ReportRequestId>
</SubmitGenerateReportResponse>
</s:Body>
</s:Envelope>
However on polling the result
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header>
<h:TrackingId xmlns:h="https://bingads.microsoft.com/Reporting/v13">e9e51e5e-0a36-4fff-b916-cd50551b46c1</h:TrackingId>
</s:Header>
<s:Body>
<PollGenerateReportResponse xmlns="https://bingads.microsoft.com/Reporting/v13">
<ReportRequestStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<ReportDownloadUrl i:nil="true"/>
<Status>Success</Status>
</ReportRequestStatus>
</PollGenerateReportResponse>
</s:Body>
</s:Envelope>
The ReportDownloadUrl is always empty. Has there has been any recent changes to DestinationUrlPerformanceReport ?