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

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 में मौजूद सही फ़ील्ड का इस्तेमाल करके दिया जाना चाहिए.

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

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(10000L);

// 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': 10000,
    '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(10000);

// 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']
);