Skip to content

Commit c7899f4

Browse files
small fixes
1 parent 4bb0bbf commit c7899f4

File tree

1 file changed

+9
-12
lines changed

1 file changed

+9
-12
lines changed

docs/endpoints/post-identity-map.md

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,7 @@ import Link from '@docusaurus/Link';
99

1010
# POST /identity/map
1111

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.
1613

1714
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).
1815

@@ -148,8 +145,8 @@ Identifiers that cannot be mapped to an advertising ID are mapped to an error ob
148145
{
149146
"body":{
150147
"email": [
151-
{ "e": "INVALID" },
152-
{ "e": "OPTOUT" }
148+
{ "e": "invalid identifier" },
149+
{ "e": "optout" }
153150
],
154151
"email_hash": [],
155152
"phone": [],
@@ -163,17 +160,17 @@ Identifiers that cannot be mapped to an advertising ID are mapped to an error ob
163160

164161
For successfully mapped DIIs, the response body includes the properties shown in the following table.
165162

166-
| Property | Data Type | Description |
167-
|:---------|:---------------|:--------------------------------------------------------------------------------------------------------------------------------------|
168-
| `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. |
163+
| Property | Data Type | Description |
164+
|:---------|:-----------|:--------------------------------------------------------------------------------------------------------------------------------------|
165+
| `u` | string | The advertising ID (raw UID2) of the DII given in the request. |
166+
| `p` | string | 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. |
167+
| `r` | number | The Unix timestamp (in milliseconds) that indicates when the advertising ID may be refreshed. |
171168

172169
For unsuccessfully mapped DIIs, the response body includes the properties shown in the following table.
173170

174171
| Property | Data Type | Description |
175172
|:---------|:----------|:-----------------------------------------------------------------------------------------------|
176-
| `e` | string | The reason for being unable to map the DII to an advertising ID. One of: "OPTOUT", "INVALID". |
173+
| `e` | string | The reason for being unable to map the DII to an advertising ID. |
177174

178175
### Response Status Codes
179176

0 commit comments

Comments
 (0)