वीडियो कैंपेन
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
वीडियो कैंपेन की मदद से, YouTube और दूसरी वेबसाइटों पर वीडियो विज्ञापन दिखाए जा सकते हैं.
एपीआई की सीमाएं
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 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 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'"]]