क्या आपको Google Ads API के बारे में सुझाव, शिकायत या राय देनी है? उपयोगकर्ताओं पर की जाने वाली रिसर्च में हिस्सा लेने का न्योता पाने के लिए, साइन अप करें!
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
अगर आपको एक ही समय में अलग-अलग तरह की इकाइयों पर काम करना है या
अलग एंडपॉइंट का इस्तेमाल करने के बजाय, एक एंडपॉइंट से लिखना पसंद है
किया जा सकता है, तो आप
GoogleAdsService.Mutate
एंडपॉइंट का इस्तेमाल करें.
mutate_operation1 = client.operation(:Mutate)
mutate_operation2 = client.operation(:Mutate)
campaign_operation = client.operation(:Campaign)
ad_group_operation = client.operation(:AdGroup)
# Do some setup here to get campaign_operation and ad_group_operation into the
# state you would want them for a regular mutate call to their respective
# services.
mutate_operation1.campaign_operation = campaign_operation
mutate_operation2.ad_group_operation = ad_group_operation
google_ads_service.mutate(customer_id, [mutate_operation1, mutate_operation2])
दूसरी सेवाओं की तरह, यह एंडपॉइंट भी काम करता है
पार्शियल फ़ेलियर और
सिर्फ़ पुष्टि करने के लिए.
[[["समझने में आसान है","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"]],["आखिरी बार 2024-08-21 (UTC) को अपडेट किया गया."],[[["Use the `GoogleAdsService.Mutate` endpoint to operate on different entity types or prefer a single endpoint."],["The `MutateGoogleAdsRequest` accepts multiple `MutateOperation` entities, each handling a single operation for one resource type."],["Construct separate `MutateOperation` objects for each desired operation, like creating a campaign and an ad group, and pass them to `GoogleAdsService`."],["This endpoint supports partial failure handling and validate-only requests, similar to other Google Ads API services."]]],[]]