隱私請求 privacy-requests

本檔案概述如何管理您可透過Marketo Engage UI和Privacy Service API傳送至Privacy Service的個別資料隱私權請求。

NOTE
透過Privacy Service UI或適用於Marketo Engage的API提交的隱私權請求僅適用於下列專案:
  • 已加入Adobe Identity Management系統的Marketo Engage使用者
或 —
  • Marketo Engage使用者使用Adobe Identity Management System中已存在的其他Experience Cloud產品(例如RT-CDP、B2B和B2P版本、Audience Manager)。

您可以透過兩種方式提交存取和刪除Marketo Engage中消費者資料的個別請求:

  • 透過Privacy Service UI: https://experience.adobe.com/#/@YOURCOMPANYNAME/privacy。 請參閱此處的文件。
  • 透過Privacy Service API。 請參閱此處的文件與此處的 API 資訊。

Privacy Service支援兩種請求:資料存取和資料刪除。

讓我們看看如何建立存取和刪除請求。

傳送Marketo Engage請求所需的設定 required-setup-to-send-requests-for-marketo-engage

若要請求存取和刪除Marketo Engage的資料,您必須:

  1. 識別下列項目:

    a. IMS組織ID

    b.您要對其採取動作之人員的電子郵件地址

    IMS 組織 ID 是 24 個字元的英數字串,通常會加上 @AdobeOrg。如果您的行銷團隊或內部Adobe系統管理員不知道您組織的IMS組織ID,請透過gdprsupport@adobe.com聯絡Adobe客戶服務。 您需先取得 IMS 組織 ID,才能向隱私權 API 提交請求。

  2. 在Privacy Service中,您可以將存取和刪除請求提交至Marketo Engage,並檢查現有請求的狀態。

Marketo Engage JSON請求中的必填欄位值 required-field-values-in-marketo-engage-json-requests

"companyContexts":

  • "namespace":imsOrgID
  • "value": <Your IMS Org ID Value>

"users":

  • "action":存取​或​刪除

  • "userIDs":

    • "namespace": 電子郵件
    • "type": standard
    • "value": <Data Subject's Email Address>

"include":

  • marketo (適用於此請求的Adobe產品)

"regulation":

  • gdprccpapdpalgpd_bra​或​nzpa_nzl (適用於此要求的隱私權法規)

範例一:GDPR刪除請求 gdpr-delete-request

JSON要求

{
  "companyContexts": [
    {
      "namespace": "imsOrgID",
      "value": "1231659F56A68A8B7F000101@AdobeOrg"
    }
  ],
  "users": [
    {
      "action": [
        "delete"
      ],
      "userIDs": [
        {
          "namespace": "Email",
          "type": "standard",
          "value": "john.doe@adobe.com"
        }
      ]
    }
  ],
  "include": [
    "marketo"
  ],
  "regulation": "gdpr",
}

JSON回應

{
  "requestId": "16331241037112570RX-245",
  "totalRecords": 1,
  "jobs": [
    {
      "jobId": "997b01e3-9568-402c-904b-b4e60a437875",
      "customer": {
        "user": {
          "action": [
            "delete"
          ],
          "userIDs": [
            {
              "namespace": "Email",
              "value": "john.doe@adobe.com",
              "type": "standard",
              "namespaceId": 6,
              "isDeletedClientSide": false
            }
          ]
        }
      }
    }
  ]
}

範例二:CCPA存取要求 ccpa-access-request

JSON要求

{
  "companyContexts": [
    {
      "namespace": "imsOrgID",
      "value": "1231659F56A68A8B7F000101@AdobeOrg"
    }
  ],
  "users": [
    {
      "action": [
        "access"
      ],
      "userIDs": [
        {
          "namespace": "Email",
          "type": "standard",
          "value": "john.doe@adobe.com"
        }
      ]
    }
  ],
  "include": [
    "marketo"
  ],
  "regulation": "ccpa",
}

JSON回應

{
  "requestId": "16329573462631890RX-207",
  "totalRecords": 1,
  "jobs": [
    {
      "jobId": "3115e42d-011b-47ab-a2b0-ed4356af4d3e",
      "customer": {
        "user": {
          "action": [
            "access"
          ],
          "userIDs": [
            {
              "namespace": "Email",
              "value": "john.doe@adobe.com",
              "type": "standard",
              "namespaceId": 6,
              "isDeletedClientSide": false
            }
          ]
        }
      }
    }
  ]
}
recommendation-more-help
94ec3174-1d6c-4f51-822d-5424bedeecac