Hello,
I'm trying to get data about ads in a group, using the .NET library.
I have two questions :
1 - When I want to filter data in a query using a SELECT clause, all fields are systematically retrieved (not only the specified fields). Why ?
Example :
// status, approvalStatus, adGroupId, ... are all filled in the returned object.
var adGroupAdPage = adGroupAdService.query("SELECT Status WHERE AdGroupId = X LIMIT 0,100");
2 - In the previous adGroupAdPage result, all fields are retrieved except the destination url (adGroupAdPage.entries[x].ad.url) which is always null.
How can I get its value ?
Thank you.