किसी मौजूदा व्यू (प्रोफ़ाइल) को अपडेट करता है. इस तरीके में पैच सिमैंटिक का इस्तेमाल किया जा सकता है. इसे अभी आज़माएं या उदाहरण देखें.
यह तरीका स्टैंडर्ड पैरामीटर के अलावा, पैरामीटर टेबल में दिए गए पैरामीटर के साथ भी काम करता है.
अनुरोध करें
एचटीटीपी अनुरोध
PATCH https://www.googleapis.com/analytics/v3/management/accounts/accountId/webproperties/webPropertyId/profiles/profileId
पैरामीटर
पैरामीटर का नाम | वैल्यू | जानकारी |
---|---|---|
पाथ पैरामीटर | ||
accountId |
string |
वह खाता आईडी जिससे व्यू (प्रोफ़ाइल) जुड़ा है |
profileId |
string |
अपडेट किया जाने वाला व्यू (प्रोफ़ाइल) का आईडी. |
webPropertyId |
string |
वेब प्रॉपर्टी आईडी, जिससे व्यू (प्रोफ़ाइल) जुड़ा है |
अनुमति देना
इस अनुरोध को नीचे दिए गए दायरे के साथ अनुमति की ज़रूरत है (पुष्टि करने और अनुमति देने के बारे में ज़्यादा पढ़ें).
अनुमति देने का |
---|
https://www.googleapis.com/auth/analytics.edit |
अनुरोध का मुख्य भाग
अनुरोध के मुख्य भाग में, पैच सिमैंटिक के नियमों के हिसाब से, Management.profile संसाधन के काम के हिस्सों को उपलब्ध कराएं.
जवाब
अगर यह तरीका काम करता है, तो जवाब देने वाले पेज में मैनेजमेंट.प्रोफ़ाइल संसाधन दिखता है.
उदाहरण
ध्यान दें: इस तरीके के लिए दिए गए कोड के उदाहरणों में इसके साथ काम करने वाली सभी प्रोग्रामिंग भाषाएं नहीं दिखाई गई हैं (इसके साथ काम करने वाली भाषाओं की सूची के लिए क्लाइंट लाइब्रेरी वाला पेज देखें).
Java
Java क्लाइंट लाइब्रेरी का इस्तेमाल करता है.
/* * Note: This code assumes you have an authorized Analytics service object. * See the View (Profile) Developer Guide for details. */ /* * This request patches an existing View (Profile). */ // Construct the body of the request. Profile body = new Profile(); body.setECommerceTracking(true); body.setEnhancedECommerceTracking(true); body.setTimezone("America/Chicago"); try { analytics.management().profiles().patch("123456", "UA-123456-1", "7654321", body).execute(); } catch (GoogleJsonResponseException e) { System.err.println("There was a service error: " + e.getDetails().getCode() + " : " + e.getDetails().getMessage()); }
PHP
PHP क्लाइंट लाइब्रेरी का इस्तेमाल करता है.
/** * Note: This code assumes you have an authorized Analytics service object. * See the View (Profile) Dev Guide for details. */ /** * This request patches an existing view (profile). */ // Construct the body of the request. $profile = new Google_Service_Analytics_Profile(); $profile->setName('eCommerce View'); $profile->setECommerceTracking(True); $profile->setEnhancedECommerceTracking(True); try { $analytics->management_profiles->patch('123456', 'UA-123456-1', '7654321', $profile); } catch (apiServiceException $e) { print 'There was an Analytics API service error ' . $e->getCode() . ':' . $e->getMessage(); } catch (apiException $e) { print 'There was a general API error ' . $e->getCode() . ':' . $e->getMessage(); }
Python
Python क्लाइंट लाइब्रेरी का इस्तेमाल करता है.
# Note: This code assumes you have an authorized Analytics service object. # See the View (Profile) Developer Guide for details. # This request patches an existing View (Profile). try: analytics.management().profiles().patch( accountId='123456', webPropertyId='UA-123456-1', profileId='7654321', body={ 'eCommerceTracking': True, 'enhancedECommerceTracking': True, 'timezone': 'America/Chicago' } ).execute() except TypeError, error: # Handle errors in constructing a query. print 'There was an error in constructing your query : %s' % error except HttpError, error: # Handle API errors. print ('There was an API error : %s : %s' % (error.resp.status, error.resp.reason))
JavaScript
JavaScript क्लाइंट लाइब्रेरी का इस्तेमाल करता है.
/* * Note: This code assumes you have an authorized Analytics client object. * See the View (Profiles) Developer Guide for details. */ /* * This request patches an existing view (profile). */ function patchView() { var request = gapi.client.analytics.management.profiles.patch( { 'accountId': '123456', 'webPropertyId': 'UA-123456-1', 'profileId': '7654321', 'resource': { 'eCommerceTracking': true, 'timezone': 'America/Chicago' } }); request.execute(function (response) { // Handle the response. }); }
इसे आज़माएं!
इस तरीके को लाइव डेटा पर कॉल करने और जवाब देखने के लिए, नीचे दिए गए एपीआई एक्सप्लोरर का इस्तेमाल करें. इसके अलावा, स्टैंडअलोन एक्सप्लोरर आज़माकर देखें.