동영상 캠페인
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
동영상 캠페인을 사용하면 YouTube와 다른 웹사이트에 동영상 광고를 게재할 수 있습니다.
API 제한사항
Google Ads API는 기존 동영상 캠페인과 기준의 가져오기 및 보고만 지원합니다. Google Ads API를 사용하여 새 동영상 캠페인을 만들거나 기존 동영상 캠페인을 업데이트할 수 없습니다.
캠페인 관리 대안
프로그래매틱 방식으로 동영상 캠페인을 만들거나 관리해야 하는 경우 다음 옵션을 고려하세요.
- Google Ads 스크립트: Google Ads 스크립트를 사용하여 동영상 캠페인을 관리할 수 있습니다. 이를 통해 Google Ads 인터페이스 내에서 자동 관리가 가능합니다.
- 디맨드젠 캠페인: 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'
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2025-08-27(UTC)
[null,null,["최종 업데이트: 2025-08-27(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'"]]