ज़रूरी है. विज्ञापन देने वाले उस व्यक्ति या कंपनी का आईडी जिससे विज्ञापन ग्रुप जुड़े हैं.
क्वेरी पैरामीटर
पैरामीटर
pageSize
integer
ज़रूरी नहीं. पेज का अनुरोध किया गया साइज़. यह वैल्यू 1 और 100 के बीच होनी चाहिए. अगर कोई वैल्यू नहीं दी गई है, तो डिफ़ॉल्ट रूप से 100 लागू हो जाएगा. अमान्य वैल्यू सबमिट करने पर, गड़बड़ी कोड INVALID_ARGUMENT दिखाता है.
pageToken
string
ज़रूरी नहीं. नतीजों के उस पेज की पहचान करने वाला टोकन जिसे सर्वर को दिखाना चाहिए. आम तौर पर, यह adGroupAds.list वाले तरीके के पिछले कॉल से मिली nextPageToken की वैल्यू होती है. अगर कोई नंबर नहीं दिया जाता है, तो नतीजों का पहला पेज दिखेगा.
orderBy
string
ज़रूरी नहीं. वह फ़ील्ड जिससे सूची को क्रम से लगाया जा सकता है. स्वीकार की जा सकने वाली वैल्यू ये हैं:
displayName (डिफ़ॉल्ट)
entityStatus
डिफ़ॉल्ट रूप से, डेटा को बढ़ते क्रम में क्रम से लगाया जाता है. किसी फ़ील्ड के लिए, डेटा को घटते क्रम में लगाने के लिए, फ़ील्ड के नाम में "desc" सफ़िक्स जोड़ें. उदाहरण: displayName desc.
filter
string
ज़रूरी नहीं. कस्टम विज्ञापन ग्रुप के विज्ञापन फ़ील्ड के हिसाब से फ़िल्टर करने की सुविधा देता है.
इस्तेमाल किए जा सकने वाले सिंटैक्स:
फ़िल्टर एक्सप्रेशन में एक या उससे ज़्यादा पाबंदियां होती हैं.
पाबंदियों को AND और OR के साथ जोड़ा जा सकता है. पाबंदियों का क्रम, AND का इस्तेमाल करता है.
पाबंदी का फ़ॉर्मैट {field} {operator} {value} होता है.
सभी फ़ील्ड में EQUALS (=) ऑपरेटर का इस्तेमाल करना ज़रूरी है.
इस्तेमाल किए जा सकने वाले फ़ील्ड:
adGroupId
displayName
entityStatus
adGroupAdId
उदाहरण:
किसी विज्ञापन ग्रुप में मौजूद सभी विज्ञापन ग्रुप विज्ञापन: adGroupId="1234"
ENTITY_STATUS_ACTIVE या ENTITY_STATUS_PAUSED की इकाई स्थिति वाले विज्ञापन ग्रुप के तहत, विज्ञापन ग्रुप के सभी विज्ञापन: (entityStatus="ENTITY_STATUS_ACTIVE" OR
entityStatus="ENTITY_STATUS_PAUSED") AND
adGroupId="12345"
इस फ़ील्ड में 500 से ज़्यादा वर्ण नहीं होने चाहिए.
[[["समझने में आसान है","easyToUnderstand","thumb-up"],["मेरी समस्या हल हो गई","solvedMyProblem","thumb-up"],["अन्य","otherUp","thumb-up"]],[["वह जानकारी मौजूद नहीं है जो मुझे चाहिए","missingTheInformationINeed","thumb-down"],["बहुत मुश्किल है / बहुत सारे चरण हैं","tooComplicatedTooManySteps","thumb-down"],["पुराना","outOfDate","thumb-down"],["अनुवाद से जुड़ी समस्या","translationIssue","thumb-down"],["सैंपल / कोड से जुड़ी समस्या","samplesCodeIssue","thumb-down"],["अन्य","otherDown","thumb-down"]],["आखिरी बार 2025-02-25 (UTC) को अपडेट किया गया."],[[["Lists ad group ads associated with a specific advertiser ID using the `GET` method."],["Allows for filtering and sorting of results based on various criteria like `displayName`, `entityStatus`, etc., using query parameters."],["The response includes a list of ad group ads and a token for pagination to retrieve further results."],["Requires authorization with the `https://www.googleapis.com/auth/display-video` scope."]]],["This document outlines the process of listing ad group ads via the `adGroupAds.list` method. It requires a `GET` request to a specific URL, using the advertiser's ID as a path parameter. Optional query parameters like `pageSize`, `pageToken`, `orderBy`, and `filter` enable pagination, sorting, and filtering. The request body must be empty. The response body will include a list of ad group ads and a `nextPageToken` for pagination. The process requires OAuth authorization with the `https://www.googleapis.com/auth/display-video` scope.\n"]]