Hi Werner,
The code you are using isn't supported by this support channel. The logs can be generated either by one of our
client libraries or by our
REST interface by adding parameter '-i' to the curl command line.
Could you provide us with logs of request and response to both the API's when log level is set to 'DEBUG' so that we can see what you are seeing?
The request and response appears similar to the
JSON Mappings in our REST documentation with additional information such as
request ID. Our client libraries have loggers with logging instructions, to see these instructions you can click on the client library you use in the sidebar of our
client library guide and click on "Logging”.
With that being said, I am guessing that your query is not supported as there are no number fields in Google Ads. Only resource names such as customer, campaign, metrics.cost_micros or ad_group can be a field. Here's a REST sample that works when replacing the '<>' correctly and placing in a Bash command line:curl -v -D POST "
https://googleads.googleapis.com/v10/googleAdsFields/customer" \
--header "Content-Type: application/json" \
--header "login-customer-id: <LOGIN CUSTOMER ID>" \
--header "developer-token: <DEVELOPER TOKEN>" \
--header "Authorization: Bearer <ACCESS TOKEN>"
You may also use our Get Artifact Metadata sample in the client library of your choice for the ability to choose what is returned instead of getting everything on the field.