動画キャンペーン
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
動画キャンペーンでは、YouTube やその他のウェブサイトに動画広告を表示できます。
API の制限事項
Google Ads API では、既存の動画キャンペーンとその条件の取得とレポート作成のみがサポートされています。Google Ads API を使用して、新しい動画キャンペーンを作成したり、既存の動画キャンペーンを更新したりすることはできません。
キャンペーン管理の代替手段
動画キャンペーンをプログラムで作成または管理する必要がある場合は、次のオプションを検討してください。
- Google 広告スクリプト: Google 広告スクリプトを使用して動画キャンペーンを管理できます。これにより、Google 広告の管理画面で自動管理が可能になります。
- デマンド ジェネレーション キャンペーン: YouTube を含む Google サービス全体で動画広告を配信することが目標の場合は、デマンド ジェネレーション キャンペーンの作成と管理の両方が Google Ads API で完全にサポートされています。
レポート
GoogleAdsService.SearchStream
を使用して、動画キャンペーンとその広告、条件のパフォーマンス データを取得できます。たとえば、次のように campaign.advertising_channel_type = 'VIDEO'
でフィルタします。
SELECT
campaign.name,
campaign.advertising_channel_type,
ad_group.name,
ad_group.id,
metrics.impressions,
metrics.clicks,
metrics.ctr
FROM video
WHERE campaign.advertising_channel_type = 'VIDEO'
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-09-05 UTC。
[null,null,["最終更新日 2025-09-05 UTC。"],[],[],null,["# Video campaigns\n\n[Video campaigns](//support.google.com/google-ads/answer/2375497) let you show\nvideo ads on YouTube and other websites.\n\nAPI limitations\n---------------\n\nThe Google Ads API only supports fetching and reporting on existing Video campaigns\nand their criteria. You cannot create new Video campaigns or update existing\nVideo campaigns using the Google Ads API.\n\n### Alternatives for campaign management\n\nIf you need to create or manage Video campaigns programmatically, consider\nthe following options:\n\n- **Google Ads scripts** : You can manage Video campaigns using [Google Ads scripts](/google-ads/scripts/docs/features/video-campaigns). This allows for automated management within the Google Ads interface.\n- **Demand Gen campaigns** : If your goal is to serve video ads across Google properties including YouTube, [Demand Gen campaigns](/google-ads/api/docs/demand-gen/overview) are fully supported in the Google Ads API for both creation and management.\n\nReporting\n---------\n\nYou can retrieve performance data for your Video campaigns and their ads and\ncriteria using [`GoogleAdsService.SearchStream`](/google-ads/api/reference/rpc/v21/GoogleAdsService.SearchStream)\nby filtering for `campaign.advertising_channel_type = 'VIDEO'` such as in this\nexample: \n\n SELECT\n campaign.name,\n campaign.advertising_channel_type,\n ad_group.name,\n ad_group.id,\n metrics.impressions,\n metrics.clicks,\n metrics.ctr\n FROM video\n WHERE campaign.advertising_channel_type = 'VIDEO'"]]