You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/endpoints/post-identity-map.md
+9-12Lines changed: 9 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,10 +9,7 @@ import Link from '@docusaurus/Link';
9
9
10
10
# POST /identity/map
11
11
12
-
Maps multiple email addresses, phone numbers, or their respective hashes to their raw UID2s. You can also use this endpoint to:
13
-
* check for updates opt-out information
14
-
* check when an advertisting ID may be refreshed
15
-
* map the previous advertising ID for advertising IDs that are less than 90 days old
12
+
Maps multiple email addresses, phone numbers, or their respective hashes to their raw UID2s. You can also use this endpoint to check for updates to opt-out information, check when an advertisting ID may be refreshed or view the previous advertising ID for advertising IDs that are less than 90 days old.
16
13
17
14
Used by: This endpoint is used mainly by advertisers and data providers. For details, see [Advertiser/Data Provider Integration Overview](../guides/integration-advertiser-dataprovider-overview.md).
18
15
@@ -148,8 +145,8 @@ Identifiers that cannot be mapped to an advertising ID are mapped to an error ob
148
145
{
149
146
"body":{
150
147
"email": [
151
-
{ "e": "INVALID" },
152
-
{ "e": "OPTOUT" }
148
+
{ "e": "invalid identifier" },
149
+
{ "e": "optout" }
153
150
],
154
151
"email_hash": [],
155
152
"phone": [],
@@ -163,17 +160,17 @@ Identifiers that cannot be mapped to an advertising ID are mapped to an error ob
163
160
164
161
For successfully mapped DIIs, the response body includes the properties shown in the following table.
|`u`| string | The advertising ID (raw UID2) of the DII given in the request. |
169
-
|`p`| string or null | The previous advertising ID if the current ID has been refreshed in the last 90 days. `null` if the current ID is older than 90 days. |
170
-
|`r`| number | The Unix timestamp (in milliseconds) that indicates when the advertising ID may be refreshed. |
0 commit comments