Unsampled Reports: delete

ต้องมีการให้สิทธิ์

ลบรายงานที่ไม่ได้เก็บตัวอย่าง ดูตัวอย่าง

ส่งคำขอ

คำขอ HTTP

DELETE https://www.googleapis.com/analytics/v3/management/accounts/accountId/webproperties/webPropertyId/profiles/profileId/unsampledReports/unsampledReportId

พารามิเตอร์

ชื่อพารามิเตอร์ ค่า คำอธิบาย
พารามิเตอร์เส้นทาง
accountId string รหัสบัญชีที่จะลบรายงานที่ไม่ได้เก็บตัวอย่าง
profileId string ดูรหัส (โปรไฟล์) เพื่อลบรายงานที่ไม่ได้เก็บตัวอย่าง
unsampledReportId string รหัสของรายงานที่ไม่ได้เก็บตัวอย่างที่จะลบ
webPropertyId string รหัสเว็บพร็อพเพอร์ตี้ที่จะลบรายงานที่ไม่ได้เก็บตัวอย่าง

การให้สิทธิ์

คำขอนี้ต้องได้รับการให้สิทธิ์ตามขอบเขตต่อไปนี้ (อ่านเพิ่มเติมเกี่ยวกับการตรวจสอบสิทธิ์และการให้สิทธิ์)

ขอบเขต
https://www.googleapis.com/auth/analytics.edit

เนื้อหาของคำขอ

อย่าแสดงเนื้อหาของคำขอด้วยวิธีนี้

คำตอบ

หากสำเร็จ เมธอดนี้จะแสดงเนื้อหาการตอบสนองที่ว่างเปล่า

ตัวอย่าง

หมายเหตุ: ตัวอย่างโค้ดที่มีสำหรับวิธีการนี้ไม่ได้แสดงถึงภาษาโปรแกรมที่รองรับทั้งหมด (ดูรายการภาษาที่รองรับได้ในหน้าไลบรารีของไคลเอ็นต์)

Java

ใช้ไลบรารีของไคลเอ็นต์ Java

/*
 * Note: This code assumes you have an authorized Analytics service object.
 * See the Unsampled Reports Developer Guide for details.
 */

/*
 * This request deletes an unsampled report.
 */
String unsampledReportId = "1112223334111222333411";
try {
  analytics.management().unsampledReports().
      delete("123456", "UA-123456-1", "7654321", unsampledReportId).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 Unsampled Reports Developer Guide for details.
 */

/**
 * This request deletes an Unsampled Report.
 */
try {
  $analytics->management_unsampledReports->delete('123456',
      'UA-123456-1', '7654321', '1112223334111222333411');

} 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 Unsampled Reports Developer Guide for details.

# Example #1:
# This request deletes an unsampled report.
try:
  analytics.management().unsampledReports().delete(
      accountId='123456',
      webPropertyId='UA-123456-1',
      profileId='7654321',
      unsampledReportId='1112223334111222333411'
  ).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 Unsampled Reports Developer Guide for details.
 */

/*
 * This request deletes an existing unsampled report.
 */
function getUnsampledReport() {
  var request = gapi.client.analytics.management.unsampledReports.delete({
    'accountId': '123456',
    'webPropertyId': 'UA-123456-1',
    'profileId': '7654321',
    'unsampledReportId': '1112223334111222333411'
  });
  request.execute(function (response) { /* Handle the response. */ });
}