Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .idea/.gitignore

This file was deleted.

4 changes: 2 additions & 2 deletions docs/endpoints/post-identity-map-v2.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ For details about the UID2 opt-out workflow and how users can opt out, see [User

This documentation is for version 2 of this endpoint, which is not the latest version. For the latest version, v3, see [POST /identity/map](post-identity-map.md).

:::note
If you're using an earlier version, we recommend that you upgrade as soon as possible, to take advantage of improvements. For migration guidance, see [Migration from v2 Identity Map](post-identity-map.md#migration-from-v2-identity-map). For deprecation information, see [Deprecation Schedule: Endpoint Versions](../ref-info/deprecation-schedule.md#endpoint-versions).
:::important
If you're using the v2 version, we recommend that you upgrade as soon as possible, to take advantage of improvements. For migration guidance, see [Migration from v2 Identity Map](post-identity-map.md#migration-from-v2-identity-map). For deprecation information, see [Deprecation Schedule: Endpoint Versions](../ref-info/deprecation-schedule.md#endpoint-versions).
:::

## Batch Size and Request Parallelization Requirements
Expand Down
8 changes: 4 additions & 4 deletions docs/endpoints/post-identity-map.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ The following sections provide general information and guidance for migrating to

The following table shows key differences between the versions.

| Feature | v2 Implementation | v3 Implementation |
| Feature | V2 Implementation | V3 Implementation |
|:-------------------------------|:--------------------------------------------|:-------------------------------------------|
| Endpoints Required | `/v2/identity/map` + `/v2/identity/buckets` | `/v3/identity/map` only |
| Identity Types per Request | Single identity type only | Multiple identity types |
Expand All @@ -225,7 +225,7 @@ The following table shows key differences between the versions.
To upgrade from an earlier version to version 3, follow these steps:

1. [Update Endpoint URL](#1-update-endpoint-url)
2. [Update v3 Response Parsing Logic](#2-update-v3-response-parsing-logic)
2. [Update V3 Response Parsing Logic](#2-update-v3-response-parsing-logic)
3. [Replace Salt Bucket Monitoring with Refresh Timestamp Logic](#3-replace-salt-bucket-monitoring-with-refresh-timestamp-logic)

#### 1. Update Endpoint URL
Expand All @@ -244,7 +244,7 @@ url = '/v3/identity/map'

Update the logic for parsing the response, as shown in the following example.

v2 Response Parsing:
V2 Response Parsing:
```python
# v2: Process mapped/unmapped objects with identifier lookup
for item in response['body']['mapped']:
Expand All @@ -255,7 +255,7 @@ for item in response['body']['mapped']:
store_mapping(original_identifier, raw_uid, bucket_id)
```

v3 Response Parsing:
V3 Response Parsing:
```python
# v3: Process array-indexed responses
for index, item in enumerate(response['body']['email']):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ For instructions for monitoring for salt bucket rotations, refer to one of the f

- Python SDK: [Monitor Rotated Salt Buckets](../sdks/sdk-ref-python.md#monitor-rotated-salt-buckets).

- Snowflake: [Monitor for Salt Bucket Rotation and Regenerate Raw UID2s](integration-snowflake-before-july-2025.md#monitor-for-salt-bucket-rotation-and-regenerate-raw-uid2s).
- Snowflake: [Monitor for Salt Bucket Rotation and Regenerate Raw UID2s](integration-snowflake.md#monitor-for-salt-bucket-rotation-and-regenerate-raw-uid2s).

- HTTP endpoints: [Monitor for Salt Bucket Rotations for Your Stored Raw UID2s (v2)](integration-advertiser-dataprovider-endpoints.md#monitor-for-salt-bucket-rotations-for-your-stored-raw-uid2s-v2).

Expand Down
702 changes: 0 additions & 702 deletions docs/guides/integration-snowflake-before-july-2025.md

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Snowflake Integration (Pre-Feb 2025)
sidebar_label: Snowflake (Before Feb 2025)
title: Snowflake Integration (Earlier Listings)
sidebar_label: Snowflake (earlier version)
pagination_label: Snowflake Integration
description: Information about integrating with UID2 through the UID2 Share in Snowflake (earlier listings, separate for Advertiser and Data Provider).
hide_table_of_contents: false
Expand All @@ -10,12 +10,12 @@ displayed_sidebar: docs

import Link from '@docusaurus/Link';

# Snowflake Integration Guide (Pre-Feb 2025)
# Snowflake Integration Guide (Version Prior to February 2025)

[Snowflake](https://www.snowflake.com/) is a cloud data warehousing solution, where you as a partner can store your data and integrate with the UID2 framework. Using Snowflake, UID2 enables you to securely share consumer identifier data without exposing sensitive <Link href="../ref-info/glossary-uid#gl-dii">directly identifying information (DII)</Link>. Even though you have the option to query the Operator Web Services directly for the consumer identifier data, the Snowflake UID2 integration offers a more seamless experience.

:::important
This document is for anyone using the separate advertiser and data provider Snowflake marketplace listings published prior to February 2025. For documentation on the latest version, see [Snowflake Integration Guide](integration-snowflake.md). If you're using any earlier implementation, we recommend that you migrate to the latest version to take advantage of the updates and enhancements. For migration information, see [Migration Guide](integration-snowflake-before-july-2025.md#migration-guide).
This document is for anyone using the separate advertiser and data provider Snowflake marketplace listings published prior to February 2025. For documentation on the newer, combined listing published in February 2025, see [Snowflake Integration Guide](integration-snowflake.md). If you're using the earlier implementation, we recommend that you migrate to the newer version to take advantage of the updates and enhancements. For migration information, see [Migration Guide](integration-snowflake.md#migration-guide).
:::

The Snowflake marketplace listings for this implementation were separate for advertisers and for data providers. Those listings were removed following the publication of the updated version in February 2025.
Expand Down Expand Up @@ -509,7 +509,7 @@ After:
FN_T_UID2_IDENTITY_MAP(EMAIL, 'email')
```

#### Example for mapping hashed emails
#### Example for mapping unhashed emails

Before:

Expand Down
Loading
Loading