ग्राहक मिलान वाली ऑडियंस अपलोड करें

Display & Video 360 API का इस्तेमाल करके, अपलोड की गई ग्राहक की संपर्क जानकारी या मोबाइल डिवाइस आईडी का इस्तेमाल करके, कस्टमर मैच ऑडियंस बनाई जा सकती हैं. इस पेज पर, शुरुआती ग्राहक मैच ऑडियंस बनाने और Display & Video 360 API का इस्तेमाल करके, मौजूदा ऑडियंस में नए ग्राहक का डेटा जोड़ने का तरीका बताया गया है.

उपयोगकर्ता का डेटा तैयार करना

कस्टमर मैच ऑडियंस को पॉप्युलेट करने के लिए इस्तेमाल किया जाने वाला उपयोगकर्ता डेटा संवेदनशील होता है. इसलिए, इसे अपलोड करने से पहले सही तरीके से तैयार करना ज़रूरी होता है.

संवेदनशील डेटा को हैश करना

कस्टमर मैच की कुछ ऑडियंस, ग्राहक की संवेदनशील संपर्क जानकारी का इस्तेमाल करके बनाई जाती हैं. Display & Video 360 के लिए ज़रूरी है कि संवेदनशील डेटा को अपलोड करने से पहले, SHA256 एल्गोरिदम का इस्तेमाल करके हैश किया गया हो. इन डेटा फ़ील्ड को अपलोड करने से पहले हैश करना ज़रूरी है:

  • नाम
  • उपनाम
  • ईमेल पते
  • फ़ोन नंबर

पिन कोड और देश कोड को अपलोड करने से पहले हैश नहीं किया जाना चाहिए. ग्राहक का बिना हैश किया गया डेटा अपलोड करने पर गड़बड़ी का मैसेज मिलता है.

डेटा को हैश करने से पहले, इन शर्तों को पूरा करना न भूलें:

  • नाम, सरनेम, और ईमेल पते की वैल्यू से सभी खाली जगह हटानी होगी.
  • सभी वैल्यू को लोअरकेस में लिखा जाना चाहिए.
  • सभी फ़ोन नंबर, E.164 फ़ॉर्मैट का इस्तेमाल करके फ़ॉर्मैट किए जाने चाहिए. साथ ही, उनमें देश का कॉलिंग कोड शामिल होना चाहिए.

उपयोगकर्ता का डेटा अपलोड करते समय, दिए गए ContactInfoList या MobileDeviceIdList ऑब्जेक्ट में consent फ़ील्ड का इस्तेमाल करें. इससे, शामिल किए गए उपयोगकर्ताओं की सहमति के सिग्नल पास किए जा सकते हैं.

Consent ऑब्जेक्ट में किसी भी फ़ील्ड को CONSENT_STATUS_DENIED पर सेट करने पर गड़बड़ी होती है.

सहमति के सिग्नल, एक ही firstAndThirdPartyAudiences.create या firstAndThirdPartyAudiences.editCustomerMatchMembers अनुरोध में जोड़े गए सभी उपयोगकर्ताओं के लिए सेट किए जाते हैं. सहमति के अलग-अलग सिग्नल वाले उपयोगकर्ताओं को अलग-अलग अनुरोधों में अपलोड किया जाना चाहिए.

कस्टमर मैच ऑडियंस बनाना

firstAndThirdPartyAudiences.create तरीके का इस्तेमाल करके, कस्टमर मैच ऑडियंस बनाई जा सकती है. ऑडियंस को पहले पक्ष की ऑडियंस के तौर पर घोषित किया जाना चाहिए. साथ ही, उसमें CUSTOMER_MATCH_CONTACT_INFO या CUSTOMER_MATCH_DEVICE_ID में से कोई एक audienceType होना चाहिए. कस्टमर मैच डेटा, यूनियन फ़ील्ड members में मौजूद सही फ़ील्ड का इस्तेमाल करके दिया जाना चाहिए.

यहां हैश किए गए फ़ोन नंबर की दी गई सूची का इस्तेमाल करके, संपर्क जानकारी वाली नई कस्टमर मैच ऑडियंस बनाने का उदाहरण दिया गया है. इस ऑडियंस की सदस्यता की अवधि 540 दिन होगी:

Java

// Create Customer Match audience object.
FirstAndThirdPartyAudience customerMatchAudience =
    new FirstAndThirdPartyAudience()
        .setDisplayName(display-name)
        .setFirstAndThirdPartyAudienceType(
            "FIRST_AND_THIRD_PARTY_AUDIENCE_TYPE_FIRST_PARTY"
        )
        .setAudienceType("CUSTOMER_MATCH_CONTACT_INFO")
        .setMembershipDurationDays(540L);

// Build list of contact information objects.
ContactInfoList contactInfoList = new ContactInfoList();
ArrayList<ContactInfo> contactInfos = new ArrayList<ContactInfo>();
for (String hashedPhoneNumber : list-of-hashed-phone-numbers) {
  ContactInfo contactInfo = new ContactInfo();
  ArrayList<String> phoneNumberList = new ArrayList<String>();
  phoneNumberList.add(hashedPhoneNumber);
  contactInfo.setHashedPhoneNumbers(phoneNumberList);
  contactInfos.add(contactInfo);
}
contactInfoList.setContactInfos(contactInfos);

// Build consent object for passing consent if granted by the end user.
Consent consent =
    new Consent()
        .setAdUserData(ad-user-data-consent)
        .setAdPersonalization(ad-personalization-consent);
ContactInfoList.setConsent(consent);

// Assign contact info list to Customer Match audience.
customerMatchAudience.setContactInfoList(contactInfoList);

// Create Customer Match audience.
FirstAndThirdPartyAudience response =
    service
        .firstAndThirdPartyAudiences()
        .create(customerMatchAudience)
        .setAdvertiserId(advertiser-id)
        .execute();

// Display name of new audience.
System.out.printf(
    "Customer Match audience %s was created.",
    response.getName()
);

Python

# Build list of Contact Info objects
contact_infos = []
for hashed_phone_number in list-of-hashed-phone-numbers:
  contact_infos.append({'hashedPhoneNumbers': [hashed_phone_number]})

# Create a Customer Match first- and third-party audience object.
audience_obj = {
    'displayName': display-name,
    'firstAndThirdPartyAudienceType':
        'FIRST_AND_THIRD_PARTY_AUDIENCE_TYPE_FIRST_PARTY',
    'audienceType': 'CUSTOMER_MATCH_CONTACT_INFO',
    'membershipDurationDays': 540,
    'contactInfoList': {
        'contactInfos': [
            contact_infos
        ],
        'consent': {
            'adUserData': ad-user-data-consent,
            'adPersonalization': ad-personalization-consent
        }
    }
}

# Build and execute request.
audience = service.firstAndThirdPartyAudiences().create(
    advertiserId=advertiser-id,
    body=audience_obj
).execute()

# Display name of new audience.
print('Customer Match audience %s was created.' % audience["name"])

PHP

// Create a Customer Match first- and third-party audience object.
$audience = new Google_Service_DisplayVideo_FirstAndThirdPartyAudience();
$audience->setDisplayName(display-name);
$audience->setFirstAndThirdPartyAudienceType(
    'FIRST_AND_THIRD_PARTY_AUDIENCE_TYPE_FIRST_PARTY'
);
$audience->setAudienceType('CUSTOMER_MATCH_CONTACT_INFO');
$audience->setMembershipDurationDays(540);

// Build list of contact information objects.
$contactInfoList = new Google_Service_DisplayVideo_ContactInfoList();
$contactInfos = array();
foreach (list-of-hashed-phone-numbers as $hashedPhoneNumber) {
    $contactInfo = new Google_Service_DisplayVideo_ContactInfo();
    $contactInfo->setHashedPhoneNumbers(array($hashedPhoneNumber));
    $contactInfos[] = $contactInfo;
}
$contactInfoList->setContactInfos($contactInfos);

// Build consent object for passing consent if granted by the end user.
$consent = new Google_Service_DisplayVideo_Consent();
$consent->setAdUserData(ad-user-data-consent);
$consent->setAdPersonalization(ad-personalization-consent);
$contactInfoList->setConsent($consent);

// Assign contactInfoList to audience object.
$audience->setContactInfoList($contactInfoList);

// Call the API, creating the audience.
$result = $this->service->firstAndThirdPartyAudiences->create(
    $audience,
    array('advertiserId' => advertiser-id)
);

// Display name of new audience.
printf('Customer Match audience %s was created.', $result['name']);

कस्टमर मैच ऑडियंस की सदस्यता अपडेट करना

अगर आपको टारगेट करने के लिए और ग्राहकों की पहचान करनी है, ग्राहकों की मौजूदा ऑडियंस की सदस्यताएं रिन्यू करनी हैं या किसी ऑडियंस से ग्राहकों को हटाना है, तो firstAndThirdPartyAudiences.editCustomerMatchMembers तरीके का इस्तेमाल करके, किसी मौजूदा कस्टमर मैच ऑडियंस का ग्राहक डेटा अपडेट किया जा सकता है. added_members यूनियन फ़ील्ड का इस्तेमाल करके, ग्राहकों को सूची में जोड़ा जा सकता है. साथ ही, removed_members यूनियन फ़ील्ड का इस्तेमाल करके, ग्राहकों को सूची से हटाया जा सकता है.

एक बार में, firstAndThirdPartyAudiences.editCustomerMatchMembers के ज़रिए सिर्फ़ एक सूची में सदस्यों को जोड़ा या हटाया जा सकता है. दोनों काम करने के लिए एक ही अनुरोध करने पर, INVALID_ARGUMENT गड़बड़ी का मैसेज मिलता है.

यहां दिए गए मेलिंग पते के डेटा का इस्तेमाल करके, किसी मौजूदा संपर्क जानकारी वाली कस्टमर मैच ऑडियंस में किसी एक ग्राहक को सदस्य के तौर पर जोड़ने का उदाहरण दिया गया है:

Java

// Create an edit members request object.
EditCustomerMatchMembersRequest editCustomerMatchMembersRequest =
    new EditCustomerMatchMembersRequest()
        .setAdvertiserId(advertiser-id);

// Build contact information object to add to audience.
ContactInfoList contactInfoList = new ContactInfoList();
ArrayList<ContactInfo> contactInfos = new ArrayList<ContactInfo>();
ContactInfo contactInfo =
    new ContactInfo()
        .setHashedFirstName(hashed-customer-first-name)
        .setHashedLastName(hashed-customer-last-name)
        .setZipCodes(customer-zip-codes-list)
        .setCountryCode(customer-country-code);
contactInfos.add(contactInfo);
contactInfoList.setContactInfos(contactInfos);

// Build consent object for passing consent if granted by the end user.
Consent consent =
    new Consent()
        .setAdUserData(ad-user-data-consent)
        .setAdPersonalization(ad-personalization-consent);
ContactInfoList.setConsent(consent);

// Assign contact info list to request body.
editCustomerMatchMembersRequest.setAddedContactInfoList(contactInfoList);

// Edit Customer Match audience membership.
EditCustomerMatchMembersResponse response =
    service
        .firstAndThirdPartyAudiences()
        .editCustomerMatchMembers(
            audience-id,
            editCustomerMatchMembersRequest
        )
        .execute();

// Display ID of updated audience.
System.out.printf(
    "The membership of Customer Match audience ID %s was edited.",
    response.getFirstAndThirdPartyAudienceId()
);

Python

# Create an edit members request object.
edit_member_request_obj = {
    'advertiserId': advertiser-id,
    'addedContactInfoList': {
        'contactInfos': [
            {
                'hashedFirstName': hashed-customer-first-name,
                'hashedLastName': hashed-customer-last-name,
                'countryCode': customer-country-code,
                'zipCodes': customer-zip-codes-list
            }
        ],
        'consent': {
          'adUserData': ad-user-data-consent,
          'adPersonalization': ad-personalization-consent
        }
    }
}

# Build and execute request.
response = service.firstAndThirdPartyAudiences().editCustomerMatchMembers(
    firstAndThirdPartyAudienceId=audience-id,
    body=edit_member_request_obj
).execute()

# Display ID of updated audience.
print('The membership of the Customer Match audience ID %s was updated.'
      % response["firstAndThirdPartyAudienceId"])

PHP

// Create an edit members request object.
$editMemberRequest =
    new Google_Service_DisplayVideo_EditCustomerMatchMembersRequest();
$editMemberRequest->setAdvertiserId(advertiser-id);

// Build contact information object to add to audience.
$contactInfoList = new Google_Service_DisplayVideo_ContactInfoList();
$contactInfos = array();
$contactInfo = new Google_Service_DisplayVideo_ContactInfo();
$contactInfo->setHashedFirstName(hashed-customer-first-name);
$contactInfo->setHashedLastName(hashed-customer-last-name);
$contactInfo->setCountryCode(customer-country-code);
$contactInfo->setZipCodes(array(customer-zip-codes-list));
$contactInfos[] = $contactInfo;
$contactInfoList->setContactInfos($contactInfos);

// Build consent object for passing consent if granted by the end user.
$consent = new Google_Service_DisplayVideo_Consent();
$consent->setAdUserData(ad-user-data-consent);
$consent->setAdPersonalization(ad-personalization-consent);
$contactInfoList->setConsent($consent);

// Assign contactInfoList to edit members request body.
$editMemberRequest->setAddedContactInfoList($contactInfoList);

// Call the API, editing the audience membership.
$response = $this
    ->service
    ->firstAndThirdPartyAudiences
    ->editCustomerMatchMembers(
        audience-id,
        $editMemberRequest
    );

// Display ID of updated audience.
printf(
    'The membership of Customer Match audience ID %s was edited',
    $result['firstAndThirdPartyAudienceId']
);