soapy_bing 0.3.1 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (139) hide show
  1. checksums.yaml +4 -4
  2. data/.ruby-version +1 -1
  3. data/Gemfile +1 -0
  4. data/README.md +18 -18
  5. data/Rakefile +1 -0
  6. data/lib/soapy_bing.rb +5 -1
  7. data/lib/soapy_bing/account.rb +1 -0
  8. data/lib/soapy_bing/accounts.rb +13 -17
  9. data/lib/soapy_bing/ads.rb +18 -41
  10. data/lib/soapy_bing/ads/campaign_performance_report.rb +49 -0
  11. data/lib/soapy_bing/ads/campaigns.rb +106 -0
  12. data/lib/soapy_bing/ads/parsers/bulk_csv_parser.rb +34 -0
  13. data/lib/soapy_bing/ads/parsers/report_csv_parser.rb +45 -0
  14. data/lib/soapy_bing/ads/report.rb +93 -0
  15. data/lib/soapy_bing/campaign_management.rb +21 -0
  16. data/lib/soapy_bing/country_codes.rb +17 -0
  17. data/lib/soapy_bing/country_codes.yml +727 -0
  18. data/lib/soapy_bing/customer.rb +1 -0
  19. data/lib/soapy_bing/helpers.rb +1 -1
  20. data/lib/soapy_bing/helpers/zip_downloader.rb +1 -0
  21. data/lib/soapy_bing/oauth_credentials.rb +1 -0
  22. data/lib/soapy_bing/param_guard.rb +1 -0
  23. data/lib/soapy_bing/service.rb +69 -0
  24. data/lib/soapy_bing/service_operation.rb +62 -0
  25. data/lib/soapy_bing/version.rb +2 -1
  26. data/lib/soapy_bing/wsdl/ad_insight.wsdl +1 -0
  27. data/lib/soapy_bing/wsdl/bulk.wsdl +1 -0
  28. data/lib/soapy_bing/wsdl/campaign_management.wsdl +1 -0
  29. data/lib/soapy_bing/wsdl/customer_billing.wsdl +1 -0
  30. data/lib/soapy_bing/wsdl/customer_management.wsdl +1 -0
  31. data/lib/soapy_bing/wsdl/reporting.wsdl +1 -0
  32. data/lib/tasks/console.rake +1 -0
  33. data/lib/tasks/coverage.rake +1 -0
  34. data/lib/tasks/spec.rake +1 -0
  35. data/lib/tasks/upate_wsdl_files.rake +23 -0
  36. data/lib/tasks/update_country_codes.rake +24 -0
  37. data/soapy_bing.gemspec +2 -1
  38. data/spec/fixtures/ads/campaign_performance_report.csv +37 -0
  39. data/spec/fixtures/ads/campaign_performance_report.json +170 -0
  40. data/spec/fixtures/ads/campaigns_by_account_id.csv +7 -0
  41. data/spec/fixtures/{bulk/campaigns.json → ads/campaigns_by_account_id.json} +496 -240
  42. data/spec/fixtures/ads/campaigns_by_campaign_ids.csv +5 -0
  43. data/spec/fixtures/ads/campaigns_by_campaign_ids.json +910 -0
  44. data/spec/fixtures/vcr_cassettes/SoapyBing_Accounts/_list/returns_a_list_of_SoapyBing_Account_objects.yml +27 -27
  45. data/spec/fixtures/vcr_cassettes/SoapyBing_Ads/_campaigns/by_account_id/returns_parsed_rows.yml +301 -0
  46. data/spec/fixtures/vcr_cassettes/SoapyBing_Ads/_campaigns/by_campaign_ids/returns_parsed_rows.yml +300 -0
  47. data/spec/fixtures/vcr_cassettes/SoapyBing_CampaignManagement/_get_geo_locations/returns_a_list_of_geo_locations_hashes.yml +154 -0
  48. data/spec/fixtures/vcr_cassettes/campaign_performance_report/with_pending_status.yml +65 -94
  49. data/spec/fixtures/vcr_cassettes/campaign_performance_report/with_successful_empty_response.yml +511 -0
  50. data/spec/fixtures/vcr_cassettes/campaign_performance_report/with_successful_response.yml +384 -0
  51. data/spec/integration/soapy_bing/accounts_spec.rb +1 -0
  52. data/spec/integration/soapy_bing/ads_campaigns_spec.rb +85 -0
  53. data/spec/integration/soapy_bing/campaign_management_spec.rb +22 -0
  54. data/spec/integration/soapy_bing/oauth_credentials_spec.rb +1 -0
  55. data/spec/simplecov_setup.rb +1 -0
  56. data/spec/soapy_bing/account_spec.rb +6 -2
  57. data/spec/soapy_bing/accounts_spec.rb +47 -0
  58. data/spec/soapy_bing/ads/campaign_performance_report_spec.rb +79 -0
  59. data/spec/soapy_bing/ads/campaigns_spec.rb +99 -0
  60. data/spec/soapy_bing/ads/{bulk/parsers/csv_parser_spec.rb → parsers/bulk_csv_parser_spec.rb} +5 -4
  61. data/spec/soapy_bing/ads/{reports/parsers/csv_parser_spec.rb → parsers/report_csv_parser_spec.rb} +6 -4
  62. data/spec/soapy_bing/country_codes_spec.rb +39 -0
  63. data/spec/soapy_bing/helpers/zip_downloader_spec.rb +2 -0
  64. data/spec/soapy_bing/oauth_credentials_spec.rb +6 -2
  65. data/spec/soapy_bing/param_guard_spec.rb +2 -0
  66. data/spec/soapy_bing/service_spec.rb +56 -0
  67. data/spec/spec_helper.rb +1 -0
  68. data/spec/support/dotenv.rb +1 -0
  69. data/spec/support/vcr.rb +75 -6
  70. metadata +74 -118
  71. data/lib/soapy_bing/ads/bulk.rb +0 -3
  72. data/lib/soapy_bing/ads/bulk/campaigns.rb +0 -65
  73. data/lib/soapy_bing/ads/bulk/parsers.rb +0 -2
  74. data/lib/soapy_bing/ads/bulk/parsers/csv_parser.rb +0 -35
  75. data/lib/soapy_bing/ads/reports.rb +0 -4
  76. data/lib/soapy_bing/ads/reports/base.rb +0 -74
  77. data/lib/soapy_bing/ads/reports/campaign_performance_report.rb +0 -24
  78. data/lib/soapy_bing/ads/reports/parsers.rb +0 -2
  79. data/lib/soapy_bing/ads/reports/parsers/csv_parser.rb +0 -46
  80. data/lib/soapy_bing/helpers/class_name.rb +0 -10
  81. data/lib/soapy_bing/soap.rb +0 -4
  82. data/lib/soapy_bing/soap/request.rb +0 -10
  83. data/lib/soapy_bing/soap/request/base.rb +0 -38
  84. data/lib/soapy_bing/soap/request/download_campaigns_by_account_ids_request.rb +0 -17
  85. data/lib/soapy_bing/soap/request/get_accounts_info_request.rb +0 -17
  86. data/lib/soapy_bing/soap/request/get_ad_groups_by_campaign_id_request.rb +0 -17
  87. data/lib/soapy_bing/soap/request/get_ads_by_ad_group_id_request.rb +0 -17
  88. data/lib/soapy_bing/soap/request/get_bulk_download_status_request.rb +0 -17
  89. data/lib/soapy_bing/soap/request/get_targets_by_campaign_ids_request.rb +0 -17
  90. data/lib/soapy_bing/soap/request/poll_generate_report_request.rb +0 -34
  91. data/lib/soapy_bing/soap/request/submit_generate_report_request.rb +0 -17
  92. data/lib/soapy_bing/soap/response.rb +0 -14
  93. data/lib/soapy_bing/soap/response/base.rb +0 -17
  94. data/lib/soapy_bing/soap/response/download_campaigns_by_account_ids_response.rb +0 -12
  95. data/lib/soapy_bing/soap/response/get_accounts_info_response.rb +0 -12
  96. data/lib/soapy_bing/soap/response/get_ad_groups_by_campaign_id_response.rb +0 -12
  97. data/lib/soapy_bing/soap/response/get_ads_by_ad_group_id_response.rb +0 -12
  98. data/lib/soapy_bing/soap/response/get_bulk_download_status_response.rb +0 -17
  99. data/lib/soapy_bing/soap/response/get_targets_by_campaign_ids_response.rb +0 -12
  100. data/lib/soapy_bing/soap/response/payload.rb +0 -28
  101. data/lib/soapy_bing/soap/response/poll_generate_report_response.rb +0 -14
  102. data/lib/soapy_bing/soap/response/report_status.rb +0 -34
  103. data/lib/soapy_bing/soap/response/submit_generate_report_response.rb +0 -12
  104. data/lib/soapy_bing/soap/template_renderer.rb +0 -22
  105. data/lib/soapy_bing/soap/templates/download_campaigns_by_account_ids.xml.erb +0 -22
  106. data/lib/soapy_bing/soap/templates/get_accounts_info.xml.erb +0 -12
  107. data/lib/soapy_bing/soap/templates/get_ad_groups_by_campaign_id.xml.erb +0 -15
  108. data/lib/soapy_bing/soap/templates/get_ads_by_ad_group_id.xml.erb +0 -15
  109. data/lib/soapy_bing/soap/templates/get_bulk_download_status.xml.erb +0 -15
  110. data/lib/soapy_bing/soap/templates/get_targets_by_campaign_ids.xml.erb +0 -20
  111. data/lib/soapy_bing/soap/templates/poll_generate_report.xml.erb +0 -18
  112. data/lib/soapy_bing/soap/templates/submit_generate_report.xml.erb +0 -46
  113. data/spec/fixtures/bulk/campaigns.csv +0 -8
  114. data/spec/fixtures/get_ad_groups_by_campaign_id.json +0 -587
  115. data/spec/fixtures/get_ads_by_ad_group_id.json +0 -218
  116. data/spec/fixtures/get_targets_by_campaign_ids.json +0 -81
  117. data/spec/fixtures/reports/campaign_performance_report.csv +0 -37
  118. data/spec/fixtures/reports/campaign_performance_report.json +0 -146
  119. data/spec/fixtures/soap_templates/simple.xml.erb +0 -2
  120. data/spec/fixtures/vcr_cassettes/SoapyBing_Ads/_get_ad_groups_by_campaign_id/1_1_1.yml +0 -150
  121. data/spec/fixtures/vcr_cassettes/SoapyBing_Ads/_get_ads_by_ad_group_id/1_2_1.yml +0 -141
  122. data/spec/fixtures/vcr_cassettes/SoapyBing_Ads/_get_targets_by_campaign_ids/1_3_1.yml +0 -111
  123. data/spec/fixtures/vcr_cassettes/SoapyBing_Ads_Bulk_Campaigns/_result_file_url/returns_result_file_url.yml +0 -216
  124. data/spec/fixtures/vcr_cassettes/campaign_performance_report/with_successful_status.yml +0 -284
  125. data/spec/integration/soapy_bing/ads/bulk/campaigns_spec.rb +0 -35
  126. data/spec/integration/soapy_bing/ads/reports/campaign_performance_report_spec.rb +0 -40
  127. data/spec/integration/soapy_bing/ads_spec.rb +0 -32
  128. data/spec/soapy_bing/ads/reports/campaign_performance_report_spec.rb +0 -42
  129. data/spec/soapy_bing/ads_spec.rb +0 -33
  130. data/spec/soapy_bing/helpers/class_name_spec.rb +0 -15
  131. data/spec/soapy_bing/soap/request/base_spec.rb +0 -55
  132. data/spec/soapy_bing/soap/request/poll_generate_report_request_spec.rb +0 -60
  133. data/spec/soapy_bing/soap/response/base_spec.rb +0 -13
  134. data/spec/soapy_bing/soap/response/get_bulk_download_status_response_spec.rb +0 -60
  135. data/spec/soapy_bing/soap/response/payload_spec.rb +0 -48
  136. data/spec/soapy_bing/soap/response/poll_generate_report_response_spec.rb +0 -26
  137. data/spec/soapy_bing/soap/response/report_status_spec.rb +0 -92
  138. data/spec/soapy_bing/soap/response/submit_generate_report_response_spec.rb +0 -20
  139. data/spec/soapy_bing/soap/template_renderer_spec.rb +0 -25
@@ -0,0 +1,7 @@
1
+ Type,Status,Id,Parent Id,Sub Type,Campaign,Ad Group,Website,Sync Time,Client Id,Modified Time,Tracking Template,Custom Parameter,Final Url,Mobile Final Url,Time Zone,Budget Id,Budget Name,Budget,Budget Type,Bid Strategy Type,Bid Strategy MaxCpc,Bid Strategy TargetCpa,KeywordVariantMatchEnabled,Campaign Type,Priority,LocalInventoryAdsEnabled,Start Date,End Date,Network Distribution,Pricing Model,Ad Rotation,Search Network,Search Bid,Content Network,Content Bid,Language,Title,Text,Display Url,Destination Url,Business Name,Phone Number,Promotion,Editorial Status,Editorial Location,Editorial Term,Editorial Reason Code,Editorial Appeal Status,Device Preference,Ad Format Preference,Title Part 1,Title Part 2,Path 1,Path 2,Keyword,Match Type,Bid,Param1,Param2,Param3,Target,Physical Intent,Bid Adjustment,Radius Target Id,Name,OS Names,Radius,Unit,Business Id,From Hour,From Minute,To Hour,To Minute,Version,Ad Schedule,Use Searcher Time Zone,Sitelink Extension Order,Sitelink Extension Link Text,Sitelink Extension Destination Url,Sitelink Extension Description1,Sitelink Extension Description2,Geo Code Status,Map Icon,Business Icon,Address Line 1,Address Line 2,Postal Code,City,State Or Province Code,Province Name,Latitude,Longitude,Country Code,Call Only,Call Tracking Enabled,Toll Free,Alternative Text,Media Ids,Publisher Countries,Store Id,Product Condition 1,Product Value 1,Product Condition 2,Product Value 2,Product Condition 3,Product Value 3,Product Condition 4,Product Value 4,Product Condition 5,Product Value 5,Product Condition 6,Product Value 6,Product Condition 7,Product Value 7,Callout Text,Action Text,Action Link Url,Price Extension Type,Header 1,Header 2,Header 3,Header 4,Header 5,Header 6,Header 7,Header 8,Price Description 1,Price Description 2,Price Description 3,Price Description 4,Price Description 5,Price Description 6,Price Description 7,Price Description 8,Final Url 1,Final Url 2,Final Url 3,Final Url 4,Final Url 5,Final Url 6,Final Url 7,Final Url 8,Final Mobile Url 1,Final Mobile Url 2,Final Mobile Url 3,Final Mobile Url 4,Final Mobile Url 5,Final Mobile Url 6,Final Mobile Url 7,Final Mobile Url 8,Price 1,Price 2,Price 3,Price 4,Price 5,Price 6,Price 7,Price 8,Currency Code 1,Currency Code 2,Currency Code 3,Currency Code 4,Currency Code 5,Currency Code 6,Currency Code 7,Currency Code 8,Price Unit 1,Price Unit 2,Price Unit 3,Price Unit 4,Price Unit 5,Price Unit 6,Price Unit 7,Price Unit 8,Price Qualifier 1,Price Qualifier 2,Price Qualifier 3,Price Qualifier 4,Price Qualifier 5,Price Qualifier 6,Price Qualifier 7,Price Qualifier 8,Is Exact,Source,Url,Structured Snippet Header,Structured Snippet Values,Spend,Impressions,Clicks,CTR,Avg CPC,Avg CPM,Avg position,Conversions,CPA,Quality Score,Keyword Relevance,Landing Page Relevance,Landing Page User Experience,App Platform,App Id,Tracking Enabled,App Status,Error,Error Number,Field Path,Is Excluded,Parent Criterion Id,Audience,Audience Id,Scope,Membership Duration,UET Tag Id,Description,Remarketing Rule,Remarketing Targeting Setting,Domain Language,Dynamic Ad Target Condition 1,Dynamic Ad Target Condition 2,Dynamic Ad Target Condition 3,Dynamic Ad Target Value 1,Dynamic Ad Target Value 2,Dynamic Ad Target Value 3
2
+ Format Version,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
3
+ Account,,123456,9042840,,,,,06/22/2017 12:21:04,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
4
+ Campaign,Paused,90868683,123456,,Campaign 90868683,,,,,06/01/2017 13:07:53.727,,,,,GreenwichMeanTimeDublinEdinburghLisbonLondon,,,10,DailyBudgetStandard,ManualCpc,,,,SearchAndContent,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
5
+ Campaign,Paused,90868686,123456,,Campaign 90868686,,,,,06/01/2017 13:07:53.727,,,,,GreenwichMeanTimeDublinEdinburghLisbonLondon,,,50,DailyBudgetStandard,ManualCpc,,,,SearchAndContent,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
6
+ Campaign,Paused,90868688,123456,,Campaign 90868688,,,,,06/01/2017 13:07:53.727,,,,,GreenwichMeanTimeDublinEdinburghLisbonLondon,,,10,DailyBudgetStandard,ManualCpc,,,,SearchAndContent,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
7
+ Campaign,Paused,90876598,123456,,Campaign 90876598,,,,,06/01/2017 13:08:05.337,,,,,AmsterdamBerlinBernRomeStockholmVienna,,,100,DailyBudgetStandard,ManualCpc,,,,SearchAndContent,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
@@ -21,9 +21,12 @@
21
21
  "Budget": null,
22
22
  "Budget Type": null,
23
23
  "Bid Strategy Type": null,
24
+ "Bid Strategy MaxCpc": null,
25
+ "Bid Strategy TargetCpa": null,
24
26
  "KeywordVariantMatchEnabled": null,
25
27
  "Campaign Type": null,
26
28
  "Priority": null,
29
+ "LocalInventoryAdsEnabled": null,
27
30
  "Start Date": null,
28
31
  "End Date": null,
29
32
  "Network Distribution": null,
@@ -62,7 +65,7 @@
62
65
  "Physical Intent": null,
63
66
  "Bid Adjustment": null,
64
67
  "Radius Target Id": null,
65
- "Name": "4.0",
68
+ "Name": "5.0",
66
69
  "OS Names": null,
67
70
  "Radius": null,
68
71
  "Unit": null,
@@ -115,6 +118,71 @@
115
118
  "Callout Text": null,
116
119
  "Action Text": null,
117
120
  "Action Link Url": null,
121
+ "Price Extension Type": null,
122
+ "Header 1": null,
123
+ "Header 2": null,
124
+ "Header 3": null,
125
+ "Header 4": null,
126
+ "Header 5": null,
127
+ "Header 6": null,
128
+ "Header 7": null,
129
+ "Header 8": null,
130
+ "Price Description 1": null,
131
+ "Price Description 2": null,
132
+ "Price Description 3": null,
133
+ "Price Description 4": null,
134
+ "Price Description 5": null,
135
+ "Price Description 6": null,
136
+ "Price Description 7": null,
137
+ "Price Description 8": null,
138
+ "Final Url 1": null,
139
+ "Final Url 2": null,
140
+ "Final Url 3": null,
141
+ "Final Url 4": null,
142
+ "Final Url 5": null,
143
+ "Final Url 6": null,
144
+ "Final Url 7": null,
145
+ "Final Url 8": null,
146
+ "Final Mobile Url 1": null,
147
+ "Final Mobile Url 2": null,
148
+ "Final Mobile Url 3": null,
149
+ "Final Mobile Url 4": null,
150
+ "Final Mobile Url 5": null,
151
+ "Final Mobile Url 6": null,
152
+ "Final Mobile Url 7": null,
153
+ "Final Mobile Url 8": null,
154
+ "Price 1": null,
155
+ "Price 2": null,
156
+ "Price 3": null,
157
+ "Price 4": null,
158
+ "Price 5": null,
159
+ "Price 6": null,
160
+ "Price 7": null,
161
+ "Price 8": null,
162
+ "Currency Code 1": null,
163
+ "Currency Code 2": null,
164
+ "Currency Code 3": null,
165
+ "Currency Code 4": null,
166
+ "Currency Code 5": null,
167
+ "Currency Code 6": null,
168
+ "Currency Code 7": null,
169
+ "Currency Code 8": null,
170
+ "Price Unit 1": null,
171
+ "Price Unit 2": null,
172
+ "Price Unit 3": null,
173
+ "Price Unit 4": null,
174
+ "Price Unit 5": null,
175
+ "Price Unit 6": null,
176
+ "Price Unit 7": null,
177
+ "Price Unit 8": null,
178
+ "Price Qualifier 1": null,
179
+ "Price Qualifier 2": null,
180
+ "Price Qualifier 3": null,
181
+ "Price Qualifier 4": null,
182
+ "Price Qualifier 5": null,
183
+ "Price Qualifier 6": null,
184
+ "Price Qualifier 7": null,
185
+ "Price Qualifier 8": null,
118
186
  "Is Exact": null,
119
187
  "Source": null,
120
188
  "Url": null,
@@ -142,12 +210,13 @@
142
210
  "Field Path": null,
143
211
  "Is Excluded": null,
144
212
  "Parent Criterion Id": null,
145
- "Remarketing List": null,
146
- "Remarketing List Id": null,
213
+ "Audience": null,
214
+ "Audience Id": null,
147
215
  "Scope": null,
148
216
  "Membership Duration": null,
149
217
  "UET Tag Id": null,
150
218
  "Description": null,
219
+ "Remarketing Rule": null,
151
220
  "Remarketing Targeting Setting": null,
152
221
  "Domain Language": null,
153
222
  "Dynamic Ad Target Condition 1": null,
@@ -160,13 +229,13 @@
160
229
  {
161
230
  "Type": "Account",
162
231
  "Status": null,
163
- "Id": "2000001",
164
- "Parent Id": "9000001",
232
+ "Id": "123456",
233
+ "Parent Id": "9042840",
165
234
  "Sub Type": null,
166
235
  "Campaign": null,
167
236
  "Ad Group": null,
168
237
  "Website": null,
169
- "Sync Time": "09/09/2016 14:28:40",
238
+ "Sync Time": "06/22/2017 12:21:04",
170
239
  "Client Id": null,
171
240
  "Modified Time": null,
172
241
  "Tracking Template": null,
@@ -179,9 +248,12 @@
179
248
  "Budget": null,
180
249
  "Budget Type": null,
181
250
  "Bid Strategy Type": null,
251
+ "Bid Strategy MaxCpc": null,
252
+ "Bid Strategy TargetCpa": null,
182
253
  "KeywordVariantMatchEnabled": null,
183
254
  "Campaign Type": null,
184
255
  "Priority": null,
256
+ "LocalInventoryAdsEnabled": null,
185
257
  "Start Date": null,
186
258
  "End Date": null,
187
259
  "Network Distribution": null,
@@ -273,6 +345,71 @@
273
345
  "Callout Text": null,
274
346
  "Action Text": null,
275
347
  "Action Link Url": null,
348
+ "Price Extension Type": null,
349
+ "Header 1": null,
350
+ "Header 2": null,
351
+ "Header 3": null,
352
+ "Header 4": null,
353
+ "Header 5": null,
354
+ "Header 6": null,
355
+ "Header 7": null,
356
+ "Header 8": null,
357
+ "Price Description 1": null,
358
+ "Price Description 2": null,
359
+ "Price Description 3": null,
360
+ "Price Description 4": null,
361
+ "Price Description 5": null,
362
+ "Price Description 6": null,
363
+ "Price Description 7": null,
364
+ "Price Description 8": null,
365
+ "Final Url 1": null,
366
+ "Final Url 2": null,
367
+ "Final Url 3": null,
368
+ "Final Url 4": null,
369
+ "Final Url 5": null,
370
+ "Final Url 6": null,
371
+ "Final Url 7": null,
372
+ "Final Url 8": null,
373
+ "Final Mobile Url 1": null,
374
+ "Final Mobile Url 2": null,
375
+ "Final Mobile Url 3": null,
376
+ "Final Mobile Url 4": null,
377
+ "Final Mobile Url 5": null,
378
+ "Final Mobile Url 6": null,
379
+ "Final Mobile Url 7": null,
380
+ "Final Mobile Url 8": null,
381
+ "Price 1": null,
382
+ "Price 2": null,
383
+ "Price 3": null,
384
+ "Price 4": null,
385
+ "Price 5": null,
386
+ "Price 6": null,
387
+ "Price 7": null,
388
+ "Price 8": null,
389
+ "Currency Code 1": null,
390
+ "Currency Code 2": null,
391
+ "Currency Code 3": null,
392
+ "Currency Code 4": null,
393
+ "Currency Code 5": null,
394
+ "Currency Code 6": null,
395
+ "Currency Code 7": null,
396
+ "Currency Code 8": null,
397
+ "Price Unit 1": null,
398
+ "Price Unit 2": null,
399
+ "Price Unit 3": null,
400
+ "Price Unit 4": null,
401
+ "Price Unit 5": null,
402
+ "Price Unit 6": null,
403
+ "Price Unit 7": null,
404
+ "Price Unit 8": null,
405
+ "Price Qualifier 1": null,
406
+ "Price Qualifier 2": null,
407
+ "Price Qualifier 3": null,
408
+ "Price Qualifier 4": null,
409
+ "Price Qualifier 5": null,
410
+ "Price Qualifier 6": null,
411
+ "Price Qualifier 7": null,
412
+ "Price Qualifier 8": null,
276
413
  "Is Exact": null,
277
414
  "Source": null,
278
415
  "Url": null,
@@ -300,12 +437,13 @@
300
437
  "Field Path": null,
301
438
  "Is Excluded": null,
302
439
  "Parent Criterion Id": null,
303
- "Remarketing List": null,
304
- "Remarketing List Id": null,
440
+ "Audience": null,
441
+ "Audience Id": null,
305
442
  "Scope": null,
306
443
  "Membership Duration": null,
307
444
  "UET Tag Id": null,
308
445
  "Description": null,
446
+ "Remarketing Rule": null,
309
447
  "Remarketing Targeting Setting": null,
310
448
  "Domain Language": null,
311
449
  "Dynamic Ad Target Condition 1": null,
@@ -316,30 +454,33 @@
316
454
  "Dynamic Ad Target Value 3": null
317
455
  },
318
456
  {
319
- "Type": "Text Ad",
320
- "Status": "Active",
321
- "Id": "4000000075",
322
- "Parent Id": "1900000096",
457
+ "Type": "Campaign",
458
+ "Status": "Paused",
459
+ "Id": "90868683",
460
+ "Parent Id": "123456",
323
461
  "Sub Type": null,
324
- "Campaign": "saga_FR_exact",
325
- "Ad Group": "lost saga",
462
+ "Campaign": "Campaign 90868683",
463
+ "Ad Group": null,
326
464
  "Website": null,
327
465
  "Sync Time": null,
328
466
  "Client Id": null,
329
- "Modified Time": "12/13/2014 16:32:34.413",
467
+ "Modified Time": "06/01/2017 13:07:53.727",
330
468
  "Tracking Template": null,
331
469
  "Custom Parameter": null,
332
470
  "Final Url": null,
333
471
  "Mobile Final Url": null,
334
- "Time Zone": null,
472
+ "Time Zone": "GreenwichMeanTimeDublinEdinburghLisbonLondon",
335
473
  "Budget Id": null,
336
474
  "Budget Name": null,
337
- "Budget": null,
338
- "Budget Type": null,
339
- "Bid Strategy Type": null,
475
+ "Budget": "10",
476
+ "Budget Type": "DailyBudgetStandard",
477
+ "Bid Strategy Type": "ManualCpc",
478
+ "Bid Strategy MaxCpc": null,
479
+ "Bid Strategy TargetCpa": null,
340
480
  "KeywordVariantMatchEnabled": null,
341
- "Campaign Type": null,
481
+ "Campaign Type": "SearchAndContent",
342
482
  "Priority": null,
483
+ "LocalInventoryAdsEnabled": null,
343
484
  "Start Date": null,
344
485
  "End Date": null,
345
486
  "Network Distribution": null,
@@ -350,20 +491,20 @@
350
491
  "Content Network": null,
351
492
  "Content Bid": null,
352
493
  "Language": null,
353
- "Title": "Joue á Lost Saga",
354
- "Text": "MMO de combat gratuit. Inscris-toi et joue gratuitement !",
355
- "Display Url": "saga.nexoneu.com",
356
- "Destination Url": "t.ad2games.com/k?w=59594_240806755&p=27871&c5=direct&c6=saga_FR_exact&c7=MV&c8=SEM_bing&ex=12007",
494
+ "Title": null,
495
+ "Text": null,
496
+ "Display Url": null,
497
+ "Destination Url": null,
357
498
  "Business Name": null,
358
499
  "Phone Number": null,
359
500
  "Promotion": null,
360
- "Editorial Status": "Active",
501
+ "Editorial Status": null,
361
502
  "Editorial Location": null,
362
503
  "Editorial Term": null,
363
504
  "Editorial Reason Code": null,
364
505
  "Editorial Appeal Status": null,
365
- "Device Preference": "All",
366
- "Ad Format Preference": "All",
506
+ "Device Preference": null,
507
+ "Ad Format Preference": null,
367
508
  "Title Part 1": null,
368
509
  "Title Part 2": null,
369
510
  "Path 1": null,
@@ -431,6 +572,71 @@
431
572
  "Callout Text": null,
432
573
  "Action Text": null,
433
574
  "Action Link Url": null,
575
+ "Price Extension Type": null,
576
+ "Header 1": null,
577
+ "Header 2": null,
578
+ "Header 3": null,
579
+ "Header 4": null,
580
+ "Header 5": null,
581
+ "Header 6": null,
582
+ "Header 7": null,
583
+ "Header 8": null,
584
+ "Price Description 1": null,
585
+ "Price Description 2": null,
586
+ "Price Description 3": null,
587
+ "Price Description 4": null,
588
+ "Price Description 5": null,
589
+ "Price Description 6": null,
590
+ "Price Description 7": null,
591
+ "Price Description 8": null,
592
+ "Final Url 1": null,
593
+ "Final Url 2": null,
594
+ "Final Url 3": null,
595
+ "Final Url 4": null,
596
+ "Final Url 5": null,
597
+ "Final Url 6": null,
598
+ "Final Url 7": null,
599
+ "Final Url 8": null,
600
+ "Final Mobile Url 1": null,
601
+ "Final Mobile Url 2": null,
602
+ "Final Mobile Url 3": null,
603
+ "Final Mobile Url 4": null,
604
+ "Final Mobile Url 5": null,
605
+ "Final Mobile Url 6": null,
606
+ "Final Mobile Url 7": null,
607
+ "Final Mobile Url 8": null,
608
+ "Price 1": null,
609
+ "Price 2": null,
610
+ "Price 3": null,
611
+ "Price 4": null,
612
+ "Price 5": null,
613
+ "Price 6": null,
614
+ "Price 7": null,
615
+ "Price 8": null,
616
+ "Currency Code 1": null,
617
+ "Currency Code 2": null,
618
+ "Currency Code 3": null,
619
+ "Currency Code 4": null,
620
+ "Currency Code 5": null,
621
+ "Currency Code 6": null,
622
+ "Currency Code 7": null,
623
+ "Currency Code 8": null,
624
+ "Price Unit 1": null,
625
+ "Price Unit 2": null,
626
+ "Price Unit 3": null,
627
+ "Price Unit 4": null,
628
+ "Price Unit 5": null,
629
+ "Price Unit 6": null,
630
+ "Price Unit 7": null,
631
+ "Price Unit 8": null,
632
+ "Price Qualifier 1": null,
633
+ "Price Qualifier 2": null,
634
+ "Price Qualifier 3": null,
635
+ "Price Qualifier 4": null,
636
+ "Price Qualifier 5": null,
637
+ "Price Qualifier 6": null,
638
+ "Price Qualifier 7": null,
639
+ "Price Qualifier 8": null,
434
640
  "Is Exact": null,
435
641
  "Source": null,
436
642
  "Url": null,
@@ -458,12 +664,13 @@
458
664
  "Field Path": null,
459
665
  "Is Excluded": null,
460
666
  "Parent Criterion Id": null,
461
- "Remarketing List": null,
462
- "Remarketing List Id": null,
667
+ "Audience": null,
668
+ "Audience Id": null,
463
669
  "Scope": null,
464
670
  "Membership Duration": null,
465
671
  "UET Tag Id": null,
466
672
  "Description": null,
673
+ "Remarketing Rule": null,
467
674
  "Remarketing Targeting Setting": null,
468
675
  "Domain Language": null,
469
676
  "Dynamic Ad Target Condition 1": null,
@@ -474,30 +681,33 @@
474
681
  "Dynamic Ad Target Value 3": null
475
682
  },
476
683
  {
477
- "Type": "Text Ad",
684
+ "Type": "Campaign",
478
685
  "Status": "Paused",
479
- "Id": "7000000082",
480
- "Parent Id": "2800000068",
686
+ "Id": "90868686",
687
+ "Parent Id": "123456",
481
688
  "Sub Type": null,
482
- "Campaign": "B. BB_game_US_alpha",
483
- "Ad Group": "1. Game Online",
689
+ "Campaign": "Campaign 90868686",
690
+ "Ad Group": null,
484
691
  "Website": null,
485
692
  "Sync Time": null,
486
693
  "Client Id": null,
487
- "Modified Time": "02/25/2015 14:22:42.380",
694
+ "Modified Time": "06/01/2017 13:07:53.727",
488
695
  "Tracking Template": null,
489
696
  "Custom Parameter": null,
490
697
  "Final Url": null,
491
698
  "Mobile Final Url": null,
492
- "Time Zone": null,
699
+ "Time Zone": "GreenwichMeanTimeDublinEdinburghLisbonLondon",
493
700
  "Budget Id": null,
494
701
  "Budget Name": null,
495
- "Budget": null,
496
- "Budget Type": null,
497
- "Bid Strategy Type": null,
702
+ "Budget": "50",
703
+ "Budget Type": "DailyBudgetStandard",
704
+ "Bid Strategy Type": "ManualCpc",
705
+ "Bid Strategy MaxCpc": null,
706
+ "Bid Strategy TargetCpa": null,
498
707
  "KeywordVariantMatchEnabled": null,
499
- "Campaign Type": null,
708
+ "Campaign Type": "SearchAndContent",
500
709
  "Priority": null,
710
+ "LocalInventoryAdsEnabled": null,
501
711
  "Start Date": null,
502
712
  "End Date": null,
503
713
  "Network Distribution": null,
@@ -508,20 +718,20 @@
508
718
  "Content Network": null,
509
719
  "Content Bid": null,
510
720
  "Language": null,
511
- "Title": "Game Online MMORPG",
512
- "Text": "Explore a vast, expanding universe. Register now and play for free!",
513
- "Display Url": "example.com",
514
- "Destination Url": "example.com/?E=Wu%2byxu8PC76sbG%2beMQchUHtUq0rOvXqJ&s1=game_US_alpha&s2={keyword}",
721
+ "Title": null,
722
+ "Text": null,
723
+ "Display Url": null,
724
+ "Destination Url": null,
515
725
  "Business Name": null,
516
726
  "Phone Number": null,
517
727
  "Promotion": null,
518
- "Editorial Status": "Active",
728
+ "Editorial Status": null,
519
729
  "Editorial Location": null,
520
730
  "Editorial Term": null,
521
731
  "Editorial Reason Code": null,
522
732
  "Editorial Appeal Status": null,
523
- "Device Preference": "All",
524
- "Ad Format Preference": "All",
733
+ "Device Preference": null,
734
+ "Ad Format Preference": null,
525
735
  "Title Part 1": null,
526
736
  "Title Part 2": null,
527
737
  "Path 1": null,
@@ -589,6 +799,71 @@
589
799
  "Callout Text": null,
590
800
  "Action Text": null,
591
801
  "Action Link Url": null,
802
+ "Price Extension Type": null,
803
+ "Header 1": null,
804
+ "Header 2": null,
805
+ "Header 3": null,
806
+ "Header 4": null,
807
+ "Header 5": null,
808
+ "Header 6": null,
809
+ "Header 7": null,
810
+ "Header 8": null,
811
+ "Price Description 1": null,
812
+ "Price Description 2": null,
813
+ "Price Description 3": null,
814
+ "Price Description 4": null,
815
+ "Price Description 5": null,
816
+ "Price Description 6": null,
817
+ "Price Description 7": null,
818
+ "Price Description 8": null,
819
+ "Final Url 1": null,
820
+ "Final Url 2": null,
821
+ "Final Url 3": null,
822
+ "Final Url 4": null,
823
+ "Final Url 5": null,
824
+ "Final Url 6": null,
825
+ "Final Url 7": null,
826
+ "Final Url 8": null,
827
+ "Final Mobile Url 1": null,
828
+ "Final Mobile Url 2": null,
829
+ "Final Mobile Url 3": null,
830
+ "Final Mobile Url 4": null,
831
+ "Final Mobile Url 5": null,
832
+ "Final Mobile Url 6": null,
833
+ "Final Mobile Url 7": null,
834
+ "Final Mobile Url 8": null,
835
+ "Price 1": null,
836
+ "Price 2": null,
837
+ "Price 3": null,
838
+ "Price 4": null,
839
+ "Price 5": null,
840
+ "Price 6": null,
841
+ "Price 7": null,
842
+ "Price 8": null,
843
+ "Currency Code 1": null,
844
+ "Currency Code 2": null,
845
+ "Currency Code 3": null,
846
+ "Currency Code 4": null,
847
+ "Currency Code 5": null,
848
+ "Currency Code 6": null,
849
+ "Currency Code 7": null,
850
+ "Currency Code 8": null,
851
+ "Price Unit 1": null,
852
+ "Price Unit 2": null,
853
+ "Price Unit 3": null,
854
+ "Price Unit 4": null,
855
+ "Price Unit 5": null,
856
+ "Price Unit 6": null,
857
+ "Price Unit 7": null,
858
+ "Price Unit 8": null,
859
+ "Price Qualifier 1": null,
860
+ "Price Qualifier 2": null,
861
+ "Price Qualifier 3": null,
862
+ "Price Qualifier 4": null,
863
+ "Price Qualifier 5": null,
864
+ "Price Qualifier 6": null,
865
+ "Price Qualifier 7": null,
866
+ "Price Qualifier 8": null,
592
867
  "Is Exact": null,
593
868
  "Source": null,
594
869
  "Url": null,
@@ -616,12 +891,13 @@
616
891
  "Field Path": null,
617
892
  "Is Excluded": null,
618
893
  "Parent Criterion Id": null,
619
- "Remarketing List": null,
620
- "Remarketing List Id": null,
894
+ "Audience": null,
895
+ "Audience Id": null,
621
896
  "Scope": null,
622
897
  "Membership Duration": null,
623
898
  "UET Tag Id": null,
624
899
  "Description": null,
900
+ "Remarketing Rule": null,
625
901
  "Remarketing Targeting Setting": null,
626
902
  "Domain Language": null,
627
903
  "Dynamic Ad Target Condition 1": null,
@@ -632,188 +908,33 @@
632
908
  "Dynamic Ad Target Value 3": null
633
909
  },
634
910
  {
635
- "Type": "Text Ad",
911
+ "Type": "Campaign",
636
912
  "Status": "Paused",
637
- "Id": "7000000083",
638
- "Parent Id": "2800000068",
913
+ "Id": "90868688",
914
+ "Parent Id": "123456",
639
915
  "Sub Type": null,
640
- "Campaign": "B. BB_game_US_alpha",
641
- "Ad Group": "1. Game Online",
642
- "Website": null,
643
- "Sync Time": null,
644
- "Client Id": null,
645
- "Modified Time": "02/25/2015 14:22:42.380",
646
- "Tracking Template": null,
647
- "Custom Parameter": null,
648
- "Final Url": null,
649
- "Mobile Final Url": null,
650
- "Time Zone": null,
651
- "Budget Id": null,
652
- "Budget Name": null,
653
- "Budget": null,
654
- "Budget Type": null,
655
- "Bid Strategy Type": null,
656
- "KeywordVariantMatchEnabled": null,
657
- "Campaign Type": null,
658
- "Priority": null,
659
- "Start Date": null,
660
- "End Date": null,
661
- "Network Distribution": null,
662
- "Pricing Model": null,
663
- "Ad Rotation": null,
664
- "Search Network": null,
665
- "Search Bid": null,
666
- "Content Network": null,
667
- "Content Bid": null,
668
- "Language": null,
669
- "Title": "Play Game Online",
670
- "Text": "Explore a vast, expanding universe. Register now and play for free!",
671
- "Display Url": "example.com",
672
- "Destination Url": "example.com/?E=Wu%2byxu8PC76sbG%2beMQchUHtUq0rOvXqJ&s1=game_US_alpha&s2={keyword}",
673
- "Business Name": null,
674
- "Phone Number": null,
675
- "Promotion": null,
676
- "Editorial Status": "Active",
677
- "Editorial Location": null,
678
- "Editorial Term": null,
679
- "Editorial Reason Code": null,
680
- "Editorial Appeal Status": null,
681
- "Device Preference": "All",
682
- "Ad Format Preference": "All",
683
- "Title Part 1": null,
684
- "Title Part 2": null,
685
- "Path 1": null,
686
- "Path 2": null,
687
- "Keyword": null,
688
- "Match Type": null,
689
- "Bid": null,
690
- "Param1": null,
691
- "Param2": null,
692
- "Param3": null,
693
- "Target": null,
694
- "Physical Intent": null,
695
- "Bid Adjustment": null,
696
- "Radius Target Id": null,
697
- "Name": null,
698
- "OS Names": null,
699
- "Radius": null,
700
- "Unit": null,
701
- "Business Id": null,
702
- "From Hour": null,
703
- "From Minute": null,
704
- "To Hour": null,
705
- "To Minute": null,
706
- "Version": null,
707
- "Ad Schedule": null,
708
- "Use Searcher Time Zone": null,
709
- "Sitelink Extension Order": null,
710
- "Sitelink Extension Link Text": null,
711
- "Sitelink Extension Destination Url": null,
712
- "Sitelink Extension Description1": null,
713
- "Sitelink Extension Description2": null,
714
- "Geo Code Status": null,
715
- "Map Icon": null,
716
- "Business Icon": null,
717
- "Address Line 1": null,
718
- "Address Line 2": null,
719
- "Postal Code": null,
720
- "City": null,
721
- "State Or Province Code": null,
722
- "Province Name": null,
723
- "Latitude": null,
724
- "Longitude": null,
725
- "Country Code": null,
726
- "Call Only": null,
727
- "Call Tracking Enabled": null,
728
- "Toll Free": null,
729
- "Alternative Text": null,
730
- "Media Ids": null,
731
- "Publisher Countries": null,
732
- "Store Id": null,
733
- "Product Condition 1": null,
734
- "Product Value 1": null,
735
- "Product Condition 2": null,
736
- "Product Value 2": null,
737
- "Product Condition 3": null,
738
- "Product Value 3": null,
739
- "Product Condition 4": null,
740
- "Product Value 4": null,
741
- "Product Condition 5": null,
742
- "Product Value 5": null,
743
- "Product Condition 6": null,
744
- "Product Value 6": null,
745
- "Product Condition 7": null,
746
- "Product Value 7": null,
747
- "Callout Text": null,
748
- "Action Text": null,
749
- "Action Link Url": null,
750
- "Is Exact": null,
751
- "Source": null,
752
- "Url": null,
753
- "Structured Snippet Header": null,
754
- "Structured Snippet Values": null,
755
- "Spend": null,
756
- "Impressions": null,
757
- "Clicks": null,
758
- "CTR": null,
759
- "Avg CPC": null,
760
- "Avg CPM": null,
761
- "Avg position": null,
762
- "Conversions": null,
763
- "CPA": null,
764
- "Quality Score": null,
765
- "Keyword Relevance": null,
766
- "Landing Page Relevance": null,
767
- "Landing Page User Experience": null,
768
- "App Platform": null,
769
- "App Id": null,
770
- "Tracking Enabled": null,
771
- "App Status": null,
772
- "Error": null,
773
- "Error Number": null,
774
- "Field Path": null,
775
- "Is Excluded": null,
776
- "Parent Criterion Id": null,
777
- "Remarketing List": null,
778
- "Remarketing List Id": null,
779
- "Scope": null,
780
- "Membership Duration": null,
781
- "UET Tag Id": null,
782
- "Description": null,
783
- "Remarketing Targeting Setting": null,
784
- "Domain Language": null,
785
- "Dynamic Ad Target Condition 1": null,
786
- "Dynamic Ad Target Condition 2": null,
787
- "Dynamic Ad Target Condition 3": null,
788
- "Dynamic Ad Target Value 1": null,
789
- "Dynamic Ad Target Value 2": null,
790
- "Dynamic Ad Target Value 3": null
791
- },
792
- {
793
- "Type": "Campaign Location Target",
794
- "Status": "Active",
795
- "Id": "450000052",
796
- "Parent Id": "90000073",
797
- "Sub Type": "Country",
798
- "Campaign": "saga_FR_exact",
916
+ "Campaign": "Campaign 90868688",
799
917
  "Ad Group": null,
800
918
  "Website": null,
801
919
  "Sync Time": null,
802
920
  "Client Id": null,
803
- "Modified Time": "05/06/2014 14:18:49.787",
921
+ "Modified Time": "06/01/2017 13:07:53.727",
804
922
  "Tracking Template": null,
805
923
  "Custom Parameter": null,
806
924
  "Final Url": null,
807
925
  "Mobile Final Url": null,
808
- "Time Zone": null,
926
+ "Time Zone": "GreenwichMeanTimeDublinEdinburghLisbonLondon",
809
927
  "Budget Id": null,
810
928
  "Budget Name": null,
811
- "Budget": null,
812
- "Budget Type": null,
813
- "Bid Strategy Type": null,
929
+ "Budget": "10",
930
+ "Budget Type": "DailyBudgetStandard",
931
+ "Bid Strategy Type": "ManualCpc",
932
+ "Bid Strategy MaxCpc": null,
933
+ "Bid Strategy TargetCpa": null,
814
934
  "KeywordVariantMatchEnabled": null,
815
- "Campaign Type": null,
935
+ "Campaign Type": "SearchAndContent",
816
936
  "Priority": null,
937
+ "LocalInventoryAdsEnabled": null,
817
938
  "Start Date": null,
818
939
  "End Date": null,
819
940
  "Network Distribution": null,
@@ -848,9 +969,9 @@
848
969
  "Param1": null,
849
970
  "Param2": null,
850
971
  "Param3": null,
851
- "Target": "FR",
852
- "Physical Intent": "PeopleInOrSearchingForOrViewingPages",
853
- "Bid Adjustment": "0",
972
+ "Target": null,
973
+ "Physical Intent": null,
974
+ "Bid Adjustment": null,
854
975
  "Radius Target Id": null,
855
976
  "Name": null,
856
977
  "OS Names": null,
@@ -905,6 +1026,71 @@
905
1026
  "Callout Text": null,
906
1027
  "Action Text": null,
907
1028
  "Action Link Url": null,
1029
+ "Price Extension Type": null,
1030
+ "Header 1": null,
1031
+ "Header 2": null,
1032
+ "Header 3": null,
1033
+ "Header 4": null,
1034
+ "Header 5": null,
1035
+ "Header 6": null,
1036
+ "Header 7": null,
1037
+ "Header 8": null,
1038
+ "Price Description 1": null,
1039
+ "Price Description 2": null,
1040
+ "Price Description 3": null,
1041
+ "Price Description 4": null,
1042
+ "Price Description 5": null,
1043
+ "Price Description 6": null,
1044
+ "Price Description 7": null,
1045
+ "Price Description 8": null,
1046
+ "Final Url 1": null,
1047
+ "Final Url 2": null,
1048
+ "Final Url 3": null,
1049
+ "Final Url 4": null,
1050
+ "Final Url 5": null,
1051
+ "Final Url 6": null,
1052
+ "Final Url 7": null,
1053
+ "Final Url 8": null,
1054
+ "Final Mobile Url 1": null,
1055
+ "Final Mobile Url 2": null,
1056
+ "Final Mobile Url 3": null,
1057
+ "Final Mobile Url 4": null,
1058
+ "Final Mobile Url 5": null,
1059
+ "Final Mobile Url 6": null,
1060
+ "Final Mobile Url 7": null,
1061
+ "Final Mobile Url 8": null,
1062
+ "Price 1": null,
1063
+ "Price 2": null,
1064
+ "Price 3": null,
1065
+ "Price 4": null,
1066
+ "Price 5": null,
1067
+ "Price 6": null,
1068
+ "Price 7": null,
1069
+ "Price 8": null,
1070
+ "Currency Code 1": null,
1071
+ "Currency Code 2": null,
1072
+ "Currency Code 3": null,
1073
+ "Currency Code 4": null,
1074
+ "Currency Code 5": null,
1075
+ "Currency Code 6": null,
1076
+ "Currency Code 7": null,
1077
+ "Currency Code 8": null,
1078
+ "Price Unit 1": null,
1079
+ "Price Unit 2": null,
1080
+ "Price Unit 3": null,
1081
+ "Price Unit 4": null,
1082
+ "Price Unit 5": null,
1083
+ "Price Unit 6": null,
1084
+ "Price Unit 7": null,
1085
+ "Price Unit 8": null,
1086
+ "Price Qualifier 1": null,
1087
+ "Price Qualifier 2": null,
1088
+ "Price Qualifier 3": null,
1089
+ "Price Qualifier 4": null,
1090
+ "Price Qualifier 5": null,
1091
+ "Price Qualifier 6": null,
1092
+ "Price Qualifier 7": null,
1093
+ "Price Qualifier 8": null,
908
1094
  "Is Exact": null,
909
1095
  "Source": null,
910
1096
  "Url": null,
@@ -932,12 +1118,13 @@
932
1118
  "Field Path": null,
933
1119
  "Is Excluded": null,
934
1120
  "Parent Criterion Id": null,
935
- "Remarketing List": null,
936
- "Remarketing List Id": null,
1121
+ "Audience": null,
1122
+ "Audience Id": null,
937
1123
  "Scope": null,
938
1124
  "Membership Duration": null,
939
1125
  "UET Tag Id": null,
940
1126
  "Description": null,
1127
+ "Remarketing Rule": null,
941
1128
  "Remarketing Targeting Setting": null,
942
1129
  "Domain Language": null,
943
1130
  "Dynamic Ad Target Condition 1": null,
@@ -948,30 +1135,33 @@
948
1135
  "Dynamic Ad Target Value 3": null
949
1136
  },
950
1137
  {
951
- "Type": "Campaign Location Target",
952
- "Status": "Active",
953
- "Id": "450000024",
954
- "Parent Id": "91000058",
955
- "Sub Type": "Country",
956
- "Campaign": "B. BB_game_US_alpha",
1138
+ "Type": "Campaign",
1139
+ "Status": "Paused",
1140
+ "Id": "90876598",
1141
+ "Parent Id": "123456",
1142
+ "Sub Type": null,
1143
+ "Campaign": "Campaign 90876598",
957
1144
  "Ad Group": null,
958
1145
  "Website": null,
959
1146
  "Sync Time": null,
960
1147
  "Client Id": null,
961
- "Modified Time": "03/25/2015 00:07:29.180",
1148
+ "Modified Time": "06/01/2017 13:08:05.337",
962
1149
  "Tracking Template": null,
963
1150
  "Custom Parameter": null,
964
1151
  "Final Url": null,
965
1152
  "Mobile Final Url": null,
966
- "Time Zone": null,
1153
+ "Time Zone": "AmsterdamBerlinBernRomeStockholmVienna",
967
1154
  "Budget Id": null,
968
1155
  "Budget Name": null,
969
- "Budget": null,
970
- "Budget Type": null,
971
- "Bid Strategy Type": null,
1156
+ "Budget": "100",
1157
+ "Budget Type": "DailyBudgetStandard",
1158
+ "Bid Strategy Type": "ManualCpc",
1159
+ "Bid Strategy MaxCpc": null,
1160
+ "Bid Strategy TargetCpa": null,
972
1161
  "KeywordVariantMatchEnabled": null,
973
- "Campaign Type": null,
1162
+ "Campaign Type": "SearchAndContent",
974
1163
  "Priority": null,
1164
+ "LocalInventoryAdsEnabled": null,
975
1165
  "Start Date": null,
976
1166
  "End Date": null,
977
1167
  "Network Distribution": null,
@@ -1006,9 +1196,9 @@
1006
1196
  "Param1": null,
1007
1197
  "Param2": null,
1008
1198
  "Param3": null,
1009
- "Target": "US",
1010
- "Physical Intent": "PeopleInOrSearchingForOrViewingPages",
1011
- "Bid Adjustment": "0",
1199
+ "Target": null,
1200
+ "Physical Intent": null,
1201
+ "Bid Adjustment": null,
1012
1202
  "Radius Target Id": null,
1013
1203
  "Name": null,
1014
1204
  "OS Names": null,
@@ -1063,6 +1253,71 @@
1063
1253
  "Callout Text": null,
1064
1254
  "Action Text": null,
1065
1255
  "Action Link Url": null,
1256
+ "Price Extension Type": null,
1257
+ "Header 1": null,
1258
+ "Header 2": null,
1259
+ "Header 3": null,
1260
+ "Header 4": null,
1261
+ "Header 5": null,
1262
+ "Header 6": null,
1263
+ "Header 7": null,
1264
+ "Header 8": null,
1265
+ "Price Description 1": null,
1266
+ "Price Description 2": null,
1267
+ "Price Description 3": null,
1268
+ "Price Description 4": null,
1269
+ "Price Description 5": null,
1270
+ "Price Description 6": null,
1271
+ "Price Description 7": null,
1272
+ "Price Description 8": null,
1273
+ "Final Url 1": null,
1274
+ "Final Url 2": null,
1275
+ "Final Url 3": null,
1276
+ "Final Url 4": null,
1277
+ "Final Url 5": null,
1278
+ "Final Url 6": null,
1279
+ "Final Url 7": null,
1280
+ "Final Url 8": null,
1281
+ "Final Mobile Url 1": null,
1282
+ "Final Mobile Url 2": null,
1283
+ "Final Mobile Url 3": null,
1284
+ "Final Mobile Url 4": null,
1285
+ "Final Mobile Url 5": null,
1286
+ "Final Mobile Url 6": null,
1287
+ "Final Mobile Url 7": null,
1288
+ "Final Mobile Url 8": null,
1289
+ "Price 1": null,
1290
+ "Price 2": null,
1291
+ "Price 3": null,
1292
+ "Price 4": null,
1293
+ "Price 5": null,
1294
+ "Price 6": null,
1295
+ "Price 7": null,
1296
+ "Price 8": null,
1297
+ "Currency Code 1": null,
1298
+ "Currency Code 2": null,
1299
+ "Currency Code 3": null,
1300
+ "Currency Code 4": null,
1301
+ "Currency Code 5": null,
1302
+ "Currency Code 6": null,
1303
+ "Currency Code 7": null,
1304
+ "Currency Code 8": null,
1305
+ "Price Unit 1": null,
1306
+ "Price Unit 2": null,
1307
+ "Price Unit 3": null,
1308
+ "Price Unit 4": null,
1309
+ "Price Unit 5": null,
1310
+ "Price Unit 6": null,
1311
+ "Price Unit 7": null,
1312
+ "Price Unit 8": null,
1313
+ "Price Qualifier 1": null,
1314
+ "Price Qualifier 2": null,
1315
+ "Price Qualifier 3": null,
1316
+ "Price Qualifier 4": null,
1317
+ "Price Qualifier 5": null,
1318
+ "Price Qualifier 6": null,
1319
+ "Price Qualifier 7": null,
1320
+ "Price Qualifier 8": null,
1066
1321
  "Is Exact": null,
1067
1322
  "Source": null,
1068
1323
  "Url": null,
@@ -1090,12 +1345,13 @@
1090
1345
  "Field Path": null,
1091
1346
  "Is Excluded": null,
1092
1347
  "Parent Criterion Id": null,
1093
- "Remarketing List": null,
1094
- "Remarketing List Id": null,
1348
+ "Audience": null,
1349
+ "Audience Id": null,
1095
1350
  "Scope": null,
1096
1351
  "Membership Duration": null,
1097
1352
  "UET Tag Id": null,
1098
1353
  "Description": null,
1354
+ "Remarketing Rule": null,
1099
1355
  "Remarketing Targeting Setting": null,
1100
1356
  "Domain Language": null,
1101
1357
  "Dynamic Ad Target Condition 1": null,
@@ -1105,4 +1361,4 @@
1105
1361
  "Dynamic Ad Target Value 2": null,
1106
1362
  "Dynamic Ad Target Value 3": null
1107
1363
  }
1108
- ]
1364
+ ]