يمكن استرداد معلومات إعداد التقارير لـ "حملات زيادة الطلب" على مستويات مختلفة، تمامًا مثل أنواع الحملات الأخرى.
إعداد التقارير على مستوى الحملة
كما هو الحال مع أنواع الحملات الأخرى، يمكنك استخدام
GoogleAdsService.SearchStream
لاسترداد السمات ومقاييس الأداء "لحملات زيادة الطلب".
SELECT
campaign.id,
campaign.status,
campaign.bidding_strategy_type
FROM campaign
WHERE campaign.advertising_channel_type = DEMAND_GEN
لاسترداد النقرات في تقارير "الحملات لزيادة الطلب"، فلتِر حسب click_type
من CROSS_NETWORK
.
إعداد التقارير على مستوى الإعلان
هناك ثلاثة أنواع من "الإعلانات لزيادة الطلب" متوافقة مع Google Ads API. استخدِم هذه الطلبات
مع GoogleAdsService.SearchStream
لاستردادها.
SELECT
ad_group_ad.ad.id,
ad_group_ad.ad.type,
ad_group_ad.ad.demand_gen_multi_asset_ad.marketing_images,
ad_group_ad.ad.demand_gen_multi_asset_ad.square_marketing_images,
ad_group_ad.ad.demand_gen_multi_asset_ad.portrait_marketing_images,
ad_group_ad.ad.demand_gen_multi_asset_ad.logo_images,
ad_group_ad.ad.demand_gen_multi_asset_ad.headlines,
ad_group_ad.ad.demand_gen_multi_asset_ad.descriptions,
ad_group_ad.ad.demand_gen_multi_asset_ad.business_name,
ad_group_ad.ad.demand_gen_multi_asset_ad.call_to_action_text,
ad_group_ad.ad.demand_gen_multi_asset_ad.lead_form_only
FROM ad_group_ad
WHERE ad_group_ad.ad.type = DEMAND_GEN_MULTI_ASSET_AD
SELECT
ad_group_ad.ad.id,
ad_group_ad.ad.type,
ad_group_ad.ad.demand_gen_carousel_ad.business_name,
ad_group_ad.ad.demand_gen_carousel_ad.logo_image,
ad_group_ad.ad.demand_gen_carousel_ad.headline,
ad_group_ad.ad.demand_gen_carousel_ad.description,
ad_group_ad.ad.demand_gen_carousel_ad.call_to_action_text,
ad_group_ad.ad.demand_gen_carousel_ad.carousel_cards
FROM ad_group_ad
WHERE ad_group_ad.ad.type = DEMAND_GEN_CAROUSEL_AD
SELECT
ad_group_ad.ad.id,
ad_group_ad.ad.type,
ad_group_ad.ad.demand_gen_video_responsive_ad.breadcrumb1,
ad_group_ad.ad.demand_gen_video_responsive_ad.breadcrumb2,
ad_group_ad.ad.demand_gen_video_responsive_ad.business_name,
ad_group_ad.ad.demand_gen_video_responsive_ad.call_to_actions,
ad_group_ad.ad.demand_gen_video_responsive_ad.descriptions,
ad_group_ad.ad.demand_gen_video_responsive_ad.headlines,
ad_group_ad.ad.demand_gen_video_responsive_ad.logo_images,
ad_group_ad.ad.demand_gen_video_responsive_ad.long_headlines,
ad_group_ad.ad.demand_gen_video_responsive_ad.videos,
FROM ad_group_ad
WHERE ad_group_ad.ad.type = DEMAND_GEN_VIDEO_RESPONSIVE_AD
التقارير على مستوى مواد العرض
تتضمّن "الحملات لزيادة الطلب" نوعًا مخصّصًا من مواد العرض للإعلانات المتبدّلة.
استخدِم
GoogleAdsService.SearchStream
لاسترداد مواد العرض هذه.
SELECT
asset.id,
asset.demand_gen_carousel_card_asset.marketing_image_asset,
asset.demand_gen_carousel_card_asset.square_marketing_image_asset,
asset.demand_gen_carousel_card_asset.portrait_marketing_image_asset,
asset.demand_gen_carousel_card_asset.headline,
asset.demand_gen_carousel_card_asset.call_to_action_text
FROM asset
WHERE asset.type = DEMAND_GEN_CAROUSEL_CARD
يمكنك أيضًا استرداد مقاييس مواد عرض DEMAND_GEN_CAROUSEL_CARD
.
SELECT
asset.id,
asset.name,
asset.type,
metrics.impressions
FROM ad_group_ad_asset_view
WHERE ad_group_ad_asset_view.field_type = DEMAND_GEN_CAROUSEL_CARD
الكيانات غير المتوافقة
لا تتوافق Google Ads API مع الإعلانات التي تظهر في واجهة "إعلانات Google" بنوع الإعلان "إعلان فيديو لزيادة الطلب (قديم)"، ولن يتم عرضها من خلال
GoogleAdsService.SearchStream