Verwalten des CCPA-Opt-outs managing-ccpa-optout

Der CCPA-Opt-out-Status eines Profils kann mithilfe des Profilattributs ccpaOptOut und der Werte "true" oder "false" überwacht und verwaltet werden:

"ccpaOptOut": <value>

  • true: untersagt den Verkauf von personenbezogenen Daten.
  • false: genehmigt den Verkauf von personenbezogenen Daten.

Beispielanfragen

  • Beispielhafte GET-Anfrage zum Abrufen des CCPA-Opt-out-Status eines Profils.

    code language-none
    -X GET https://mc.adobe.io/<ORGANIZATION>/campaign/profilesAndServices/profile/<PKEY> \
    -H 'Authorization: Bearer <ACCESS_TOKEN>' \
    -H 'Cache-Control: no-cache' \
    -H 'X-Api-Key: <API_KEY>' \
    -H 'Content-Type: application/json;charset=utf-8'
    

    Antwort auf die GET-Anfrage.

    code language-none
    {
    "PKey": "<PKEY>",
      "ccpaOptOut": false,
      "firstName": "John",
      "lastName": "Doe",
    ...
    }
    
  • Beispielhafte POST-Anfrage zum Markieren eines Profils für CCPA-Opt-out.

    code language-none
    -X POST https://mc.adobe.io/<ORGANIZATION>/campaign/profilesAndServices/profile/ \
    -H 'Authorization: Bearer <ACCESS_TOKEN>' \
    -H 'Cache-Control: no-cache' \
    -H 'X-Api-Key: <API_KEY>' \
    -H 'Content-Type: application/json;charset=utf-8'
    -i
    -d {
    -d  "firstName": "John",
    -d  "lastName": "Doe",
    -d  "email": "jdoe@mail.com",
    -d  "ccpaOptOut": true
    -d }'
    

    Antwort auf die GET-Anfrage.

    code language-none
    {
        ...
        "email": "john.doe@mail.com",
        "firstName": "John",
        "lastName": "Doe",
        "ccpaOptOut": true,
        ...
    }
    
  • Beispielhafte PATCH-Anfrage zum Aktualisieren eines Profils für CCPA-Opt-out.

    code language-none
    -X PATCH https://mc.adobe.io/<ORGANIZATION>/campaign/profilesAndServices/profile/<PKEY> \
    -H 'Authorization: Bearer <ACCESS_TOKEN>' \
    -H 'Cache-Control: no-cache' \
    -H 'X-Api-Key: <API_KEY>' \
    -H 'Content-Type: application/json;charset=utf-8'
    -i
    -d {
    -d  "ccpaOptOut": true
    -d }'
    

    Antwort auf die GET-Anfrage.

    code language-none
    {
        ...
        "email": "john.doe@mail.com",
        "firstName": "John",
        "lastName": "Doe",
        "ccpaOptOut": true,
        ...
    }
    
recommendation-more-help
3ef63344-7f3d-48f9-85ed-02bf569c4fff