The Data Manager API is in closed beta. To express interest in joining the closed beta, fill out
this form.
UserData
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
उपयोगकर्ता की पहचान करने वाला डेटा. कम से कम एक आइडेंटिफ़ायर होना ज़रूरी है.
JSON के काेड में दिखाना |
{
"userIdentifiers": [
{
object (UserIdentifier )
}
]
} |
फ़ील्ड |
userIdentifiers[] |
object (UserIdentifier )
ज़रूरी है. उपयोगकर्ता के आइडेंटिफ़ायर. एक ही तरह के डेटा के कई इंस्टेंस दिए जा सकते हैं. उदाहरण के लिए, एक से ज़्यादा ईमेल पते. मैच होने की संभावना बढ़ाने के लिए, ज़्यादा से ज़्यादा आइडेंटिफ़ायर दें. एक AudienceMember या Event में ज़्यादा से ज़्यादा 10 userIdentifiers दिए जा सकते हैं.
|
UserIdentifier
उपयोगकर्ता के लिए एक आइडेंटिफ़ायर.
JSON के काेड में दिखाना |
{
// Union field identifier can be only one of the following:
"emailAddress": string,
"phoneNumber": string,
"address": {
object (AddressInfo )
}
// End of list of possible types for union field identifier .
} |
फ़ील्ड |
यूनियन फ़ील्ड identifier . इनमें से किसी एक को ज़रूर तय करना होगा. identifier इनमें से कोई एक हो सकता है: |
emailAddress |
string
सामान्य बनाने के बाद, SHA-256 हैश फ़ंक्शन का इस्तेमाल करके हैश किया गया ईमेल पता.
|
phoneNumber |
string
सामान्य बनाने (E164 स्टैंडर्ड) के बाद, SHA-256 हैश फ़ंक्शन का इस्तेमाल करके हैश किया गया फ़ोन नंबर.
|
address |
object (AddressInfo )
उपयोगकर्ता के पते के जाने-पहचाने कॉम्पोनेंट. इसमें एक साथ मैच होने वाले आइडेंटिफ़ायर का ग्रुप होता है.
|
AddressInfo
उपयोगकर्ता के पते की जानकारी.
JSON के काेड में दिखाना |
{
"givenName": string,
"familyName": string,
"regionCode": string,
"postalCode": string
} |
फ़ील्ड |
givenName |
string
ज़रूरी है. उपयोगकर्ता का दिया गया (पहला) नाम, पूरी तरह से लोअरकेस में हो. इसमें कोई विराम चिह्न नहीं होना चाहिए. इसके अलावा, नाम के आगे या पीछे कोई खाली जगह नहीं होनी चाहिए. साथ ही, इसे SHA-256 के तौर पर हैश किया जाना चाहिए.
|
familyName |
string
ज़रूरी है. उपयोगकर्ता का सरनेम, पूरी तरह से लोअरकेस में होना चाहिए. इसमें कोई विराम चिह्न नहीं होना चाहिए. इसके अलावा, शुरुआत या आखिर में कोई खाली जगह नहीं होनी चाहिए. साथ ही, इसे SHA-256 के तौर पर हैश किया जाना चाहिए.
|
regionCode |
string
ज़रूरी है. उपयोगकर्ता के पते का ISO-3166-1 alpha-2 में दिया गया, दो अक्षर का क्षेत्र कोड.
|
postalCode |
string
ज़रूरी है. उपयोगकर्ता के पते का पिन कोड.
|
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2025-07-25 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2025-07-25 (UTC) को अपडेट किया गया."],[],[],null,["# UserData\n\n- [JSON representation](#SCHEMA_REPRESENTATION)\n- [UserIdentifier](#UserIdentifier)\n - [JSON representation](#UserIdentifier.SCHEMA_REPRESENTATION)\n- [AddressInfo](#AddressInfo)\n - [JSON representation](#AddressInfo.SCHEMA_REPRESENTATION)\n\nData that identifies the user. At least one identifier is required.\n\n| JSON representation |\n|-------------------------------------------------------------------------------------------------------------|\n| ``` { \"userIdentifiers\": [ { object (/data-manager/api/reference/rest/v1/UserData#UserIdentifier) } ] } ``` |\n\n| Fields ||\n|---------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `userIdentifiers[]` | `object (`[UserIdentifier](/data-manager/api/reference/rest/v1/UserData#UserIdentifier)`)` Required. The identifiers for the user. It's possible to provide multiple instances of the same type of data (for example, multiple email addresses). To increase the likelihood of a match, provide as many identifiers as possible. At most 10 `userIdentifiers` can be provided in a single [AudienceMember](/data-manager/api/reference/rest/v1/AudienceMember) or [Event](/data-manager/api/reference/rest/v1/events/ingest#Event). |\n\nUserIdentifier\n--------------\n\nA single identifier for the user.\n\n| JSON representation |\n|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { // Union field `identifier` can be only one of the following: \"emailAddress\": string, \"phoneNumber\": string, \"address\": { object (/data-manager/api/reference/rest/v1/UserData#AddressInfo) } // End of list of possible types for union field `identifier`. } ``` |\n\n| Fields ||\n|----------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Union field `identifier`. Exactly one must be specified. `identifier` can be only one of the following: ||\n| `emailAddress` | `string` Hashed email address using SHA-256 hash function after normalization. |\n| `phoneNumber` | `string` Hashed phone number using SHA-256 hash function after normalization (E164 standard). |\n| `address` | `object (`[AddressInfo](/data-manager/api/reference/rest/v1/UserData#AddressInfo)`)` The known components of a user's address. Holds a grouping of identifiers that are matched all at once. |\n\nAddressInfo\n-----------\n\nAddress information for the user.\n\n| JSON representation |\n|---------------------------------------------------------------------------------------------------|\n| ``` { \"givenName\": string, \"familyName\": string, \"regionCode\": string, \"postalCode\": string } ``` |\n\n| Fields ||\n|--------------|--------------------------------------------------------------------------------------------------------------------------------------------------|\n| `givenName` | `string` Required. Given (first) name of the user, all lowercase, with no punctuation, no leading or trailing whitespace, and hashed as SHA-256. |\n| `familyName` | `string` Required. Family (last) name of the user, all lowercase, with no punctuation, no leading or trailing whitespace, and hashed as SHA-256. |\n| `regionCode` | `string` Required. The 2-letter region code in ISO-3166-1 alpha-2 of the user's address. |\n| `postalCode` | `string` Required. The postal code of the user's address. |"]]