Hello!

I have just started to work with AdWords API. I need to get data from the 
API as a object. These are the things I need to get:

1. I want to retrieve campaigns with its performances 
like Clicks, Impressions, InteractionRate etc. 
2. For one specific campaign, I want to get all its ads, keywords.
3. To a specific ad or keyword, I need to get all its 
performances(Clicks, Impressions, CTR, etc)

I am confused about the way I have to get this, I know I can get basic info 
for a campaign, for example:

CampaignService campaignService =
                
(CampaignService)user.GetService(AdWordsService.v201609.CampaignService);

 Selector selector = new Selector()
{
                fields = new string[] {
                    Campaign.Fields.Id, 
                    Campaign.Fields.Name, 
                    Campaign.Fields.Status,
             },
             paging = Paging.Default
};

Anyone could refer me where I can see examples how get these things? (1) 
how do I have to set the id, what views or tables do I need to use for this?
campaignService , CampaignCriterionService,CAMPAIGN_PERFORMANCE_REPORT, etc
The same to get the ads, keywords per campaign or its performances (2) (3)
I did not find examples of how to use the API, I saw examples 
in https://developers.google.com/adwords/api/docs/samples/dotnet/reporting 
but very general and I did not find the particular things I need.

I want to create my own objects to be loaded from the API, they will be 
shown in my HTML views.

Thank you

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/c19b02e7-f8bb-4669-a090-b21c1e62c1ad%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
  • how to get camp... Alpine

Reply via email to