Skip to content

Commit b97c54b

Browse files
Address feedback
1 parent 20b31a8 commit b97c54b

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
lines changed

docs/endpoints/post-identity-map.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ For successfully mapped DII, the mapped object includes the properties shown in
179179
| `r` | number | The Unix timestamp (in milliseconds) that indicates when the raw UID2 might be refreshed. The raw UID2 is guaranteed to be valid until this timestamp. |
180180

181181
:::note
182-
The raw UID2 is guaranteed not to rotate before the refresh timestamp. After the refresh timestamp, remapping the DII returns a new refresh timestamp, but the raw UID2 may remain unchanged across multiple refresh cycles. The raw UID2 will eventually rotate after approximately one year.
182+
The raw UID2 is guaranteed not to change before the refresh timestamp. After the refresh timestamp, remapping the DII returns a new refresh timestamp, but the raw UID2 might or might not change. It is possible for the raw UID2 to remain unchanged for multiple refresh intervals.
183183
:::
184184

185185
For unsuccessfully mapped input values, the mapped object includes the properties shown in the following table.

docs/getting-started/gs-faqs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ To determine whether to refresh a raw UID2:
198198
2. If the current time is greater than or equal to the refresh timestamp, regenerate the raw UID2 by calling the identity map endpoint again with the same <Link href="../ref-info/glossary-uid#gl-dii">DII</Link>.
199199

200200
:::note
201-
The raw UID2 is guaranteed not to rotate before the refresh timestamp. After the refresh timestamp, remapping the DII returns a new refresh timestamp, but the raw UID2 may remain unchanged across multiple refresh cycles. The raw UID2 will eventually rotate after approximately one year.
201+
The raw UID2 is guaranteed not to change before the refresh timestamp. After the refresh timestamp, remapping the DII returns a new refresh timestamp, but the raw UID2 might or might not change. It is possible for the raw UID2 to remain unchanged for multiple refresh intervals.
202202
:::
203203

204204
#### How often should raw UID2s be refreshed for incremental updates?

docs/guides/integration-advertiser-dataprovider-endpoints.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,11 @@ You could also send conversion information via API or pixels for measurement (at
9393

9494
### 5: Monitor for Raw UID2 Refresh
9595

96-
A raw UID2 is an identifier for a user at a specific moment in time. The raw UID2 for a specific user rotates roughly once per year as part of the UID2 refresh process.
96+
A raw UID2 is an identifier for a user at a specific moment in time. The raw UID2 for a specific user changes roughly once per year as part of the UID2 refresh process.
9797

9898
The v3 Identity Map API provides a refresh timestamp (`r` field) in the response that indicates when each raw UID2 might rotate. Use this timestamp to determine when to regenerate raw UID2s for your stored data.
9999

100-
The raw UID2 is guaranteed not to rotate before the refresh timestamp. After the refresh timestamp, remapping the DII returns a new refresh timestamp, but the raw UID2 may remain unchanged across multiple refresh cycles. The raw UID2 will eventually rotate after approximately one year.
100+
The raw UID2 is guaranteed not to change before the refresh timestamp. After the refresh timestamp, remapping the DII returns a new refresh timestamp, but the raw UID2 might or might not change. It is possible for the raw UID2 to remain unchanged for multiple refresh intervals.
101101

102102
We recommend checking for refresh opportunities daily. The following table shows the steps for monitoring raw UID2 refresh.
103103

docs/guides/integration-advertiser-dataprovider-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ A raw UID2 is an identifier for a user at a specific moment in time. The raw UID
125125

126126
The v3 Identity Map API provides a refresh timestamp (`r` field) in the response that indicates when each raw UID2 might rotate. Use this timestamp to determine when to regenerate raw UID2s for your stored data.
127127

128-
The raw UID2 is guaranteed not to rotate before the refresh timestamp. After the refresh timestamp, remapping the DII returns a new refresh timestamp, but the raw UID2 may remain unchanged across multiple refresh cycles. The raw UID2 will eventually rotate after approximately one year.
128+
The raw UID2 is guaranteed not to change before the refresh timestamp. After the refresh timestamp, remapping the DII returns a new refresh timestamp, but the raw UID2 might or might not change. It is possible for the raw UID2 to remain unchanged for multiple refresh intervals.
129129

130130
We recommend checking for refresh opportunities daily. To determine whether to refresh a raw UID2:
131131

docs/guides/integration-databricks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ The following table provides information about the structure of the output data,
143143
| `UNMAPPED` | string | The value is one of the following:<ul><li>**DII was successfully mapped**: `NULL`.</li><li>**Otherwise**: The reason why the identifier was not mapped: `OPTOUT`, `INVALID IDENTIFIER`, or `INVALID INPUT TYPE`.<br/>For details, see [Values for the UNMAPPED Column](#values-for-the-unmapped-column).</li></ul> |
144144

145145
:::note
146-
The raw UID2 is guaranteed not to rotate before the refresh timestamp. After the refresh timestamp, remapping the DII returns a new refresh timestamp, but the raw UID2 may remain unchanged across multiple refresh cycles. The raw UID2 will eventually rotate after approximately one year.
146+
The raw UID2 is guaranteed not to change before the refresh timestamp. After the refresh timestamp, remapping the DII returns a new refresh timestamp, but the raw UID2 might or might not change. It is possible for the raw UID2 to remain unchanged for multiple refresh intervals.
147147
:::
148148

149149
#### Values for the UNMAPPED Column

docs/guides/integration-snowflake.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ The following table identifies each item in the response, including `NULL` value
388388
The `FN_T_IDENTITY_MAP_V3` function returns refresh timestamps (`REFRESH_FROM`) that indicate when each UID2 should be refreshed.
389389

390390
:::note
391-
The raw UID2 is guaranteed not to rotate before the refresh timestamp. After the refresh timestamp, remapping the DII returns a new refresh timestamp, but the raw UID2 may remain unchanged across multiple refresh cycles. The raw UID2 will eventually rotate after approximately one year.
391+
The raw UID2 is guaranteed not to change before the refresh timestamp. After the refresh timestamp, remapping the DII returns a new refresh timestamp, but the raw UID2 might or might not change. It is possible for the raw UID2 to remain unchanged for multiple refresh intervals.
392392
:::
393393

394394
To determine which UID2s need regeneration, compare the current time to the `REFRESH_FROM` timestamps returned by the function.

docs/sdks/sdk-ref-java.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -332,9 +332,9 @@ For the earlier version, see [Previous SDK Version (using POST /identity/map v2)
332332
.withHashedPhone("preHashedPhone");
333333
```
334334

335-
:::note
336-
The SDK automatically handles email normalization and hashing, ensuring that raw email addresses and phone numbers do not leave your server.
337-
:::
335+
:::note
336+
The SDK automatically handles email normalization and hashing, ensuring that raw email addresses and phone numbers do not leave your server.
337+
:::
338338

339339
3. Call a function that takes the `input` and generates an IdentityMapV3Response object:
340340
```java
@@ -360,9 +360,9 @@ The SDK automatically handles email normalization and hashing, ensuring that raw
360360
}
361361
```
362362

363-
:::note
364-
The raw UID2 is guaranteed not to rotate before the refresh timestamp. After the refresh timestamp, remapping the DII returns a new refresh timestamp, but the raw UID2 may remain unchanged across multiple refresh cycles. The raw UID2 will eventually rotate after approximately one year.
365-
:::
363+
:::note
364+
The raw UID2 is guaranteed not to change before the refresh timestamp. After the refresh timestamp, remapping the DII returns a new refresh timestamp, but the raw UID2 might or might not change. It is possible for the raw UID2 to remain unchanged for multiple refresh intervals.
365+
:::
366366

367367
### Usage Example
368368

docs/sdks/sdk-ref-python.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -255,9 +255,9 @@ To map DII to raw UID2s, follow these steps:
255255
.with_hashed_phone("pre_hashed_phone")
256256
```
257257

258-
:::note
259-
The SDK automatically handles email normalization and hashing, ensuring that raw email addresses and phone numbers do not leave your server.
260-
:::
258+
:::note
259+
The SDK automatically handles email normalization and hashing, ensuring that raw email addresses and phone numbers do not leave your server.
260+
:::
261261

262262
3. Call a function that takes the `input` and generates an `IdentityMapV3Response` object:
263263
```py
@@ -282,9 +282,9 @@ The SDK automatically handles email normalization and hashing, ensuring that raw
282282
reason = unmapped_identity.reason # OPTOUT, INVALID_IDENTIFIER, or UNKNOWN
283283
```
284284

285-
:::note
286-
The raw UID2 is guaranteed not to rotate before the refresh timestamp. After the refresh timestamp, remapping the DII returns a new refresh timestamp, but the raw UID2 may remain unchanged across multiple refresh cycles. The raw UID2 will eventually rotate after approximately one year.
287-
:::
285+
:::note
286+
The raw UID2 is guaranteed not to change before the refresh timestamp. After the refresh timestamp, remapping the DII returns a new refresh timestamp, but the raw UID2 might or might not change. It is possible for the raw UID2 to remain unchanged for multiple refresh intervals.
287+
:::
288288

289289
#### Usage Example
290290

0 commit comments

Comments
 (0)