ביצועים ברמת הקמפיין
קל לארגן דפים בעזרת אוספים
אפשר לשמור ולסווג תוכן על סמך ההעדפות שלך.
הצגת הביצועים של קמפיין למיקסום הביצועים דומה להצגת הביצועים של כל סוג אחר של קמפיין. עם זאת, צריך להוסיף מסנן כדי לכלול רק קמפיינים עם advertising_channel_type
ששווה ל-PERFORMANCE_MAX
.
לדוגמה, השאילתה הבאה מחזירה את נתוני הביצועים של כל הקמפיינים למיקסום הביצועים ב-30 הימים האחרונים. אפשר גם להגביל את התוצאות לקמפיין אחד על ידי סינון לפי campaign.id
או campaign.resource_name
. הדוח הזה מקביל לדוחות הנכסים של הערוץ 'מיקסום ביצועים' בממשק המשתמש של Google Ads.
SELECT
metrics.impressions,
metrics.clicks,
metrics.conversions,
metrics.cost_micros
FROM campaign
WHERE campaign.advertising_channel_type = 'PERFORMANCE_MAX'
AND segments.date DURING LAST_30_DAYS
הדוח performance_max_placement_view
חושף מדדי חשיפות של מיקומי מודעות בקמפיינים למיקסום ביצועים, כדי לקבל תובנות לגבי המיקומים שבהם המודעות של הקמפיין הוצגו. השאילתה הבאה מדגימה איך לאחזר חשיפות לפי מיקום בקמפיין ספציפי למיקסום ביצועים במהלך 30 הימים האחרונים.
SELECT
performance_max_placement_view.display_name,
performance_max_placement_view.placement,
performance_max_placement_view.placement_type,
performance_max_placement_view.target_url,
metrics.impressions,
campaign.id
FROM performance_max_placement_view
WHERE
campaign.id = CAMPAIGN_ID
AND segments.date DURING LAST_30_DAYS
אלא אם צוין אחרת, התוכן של דף זה הוא ברישיון Creative Commons Attribution 4.0 ודוגמאות הקוד הן ברישיון Apache 2.0. לפרטים, ניתן לעיין במדיניות האתר Google Developers. Java הוא סימן מסחרי רשום של חברת Oracle ו/או של השותפים העצמאיים שלה.
עדכון אחרון: 2025-08-27 (שעון UTC).
[null,null,["עדכון אחרון: 2025-08-27 (שעון UTC)."],[],[],null,["# Campaign level performance\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\nViewing Performance Max campaign performance is similar to [viewing the\nperformance for any other campaign type](/google-ads/api/docs/reporting/example). However,\nyou must add a filter to include only campaigns with an\n[`advertising_channel_type`](/google-ads/api/fields/v21/campaign#campaign.advertising_channel_type)\nequal to `PERFORMANCE_MAX`.\n\nPerformance for all Performance Max campaigns\n---------------------------------------------\n\nFor example, the following query returns the performance for all Performance Max\ncampaigns over the last 30 days. You can also limit the results to a single\ncampaign by filtering on [`campaign.id`](/google-ads/api/fields/v21/campaign#campaign.id) or\n[`campaign.resource_name`](/google-ads/api/fields/v21/campaign#campaign.resource_name). This\ncorresponds to the [Performance Max channel asset\nReporting](//support.google.com/google-ads/answer/10725056) in the Google Ads\nUI. \n\n SELECT\n metrics.impressions,\n metrics.clicks,\n metrics.conversions,\n metrics.cost_micros\n FROM campaign\n WHERE campaign.advertising_channel_type = 'PERFORMANCE_MAX'\n AND segments.date DURING LAST_30_DAYS\n\nPerformance Max campaign placements\n-----------------------------------\n\nThe [`performance_max_placement_view`](/google-ads/api/fields/v21/performance_max_placement_view)\nexposes placement impression metrics for Performance Max campaigns to gain\ninsights into where a campaign's ads were shown. The following query\ndemonstrates how to retrieve impressions by placement for a specific Performance\nMax campaign during the last 30 days. \n\n SELECT\n performance_max_placement_view.display_name,\n performance_max_placement_view.placement,\n performance_max_placement_view.placement_type,\n performance_max_placement_view.target_url,\n metrics.impressions,\n campaign.id\n FROM performance_max_placement_view\n WHERE\n campaign.id = \u003cvar translate=\"no\"\u003e\u003cspan class=\"devsite-syntax-n\"\u003eCAMPAIGN_ID\u003c/span\u003e\u003c/var\u003e\n AND segments.date DURING LAST_30_DAYS"]]