From 37a5be70ac099930a4a61d27f153dd7d59c90275 Mon Sep 17 00:00:00 2001 From: genwhittTTD Date: Wed, 27 Aug 2025 13:46:19 -0400 Subject: [PATCH 1/2] Guides: add info re prepping data before sending to Operator --- docs/guides/integration-options-private-operator.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/guides/integration-options-private-operator.md b/docs/guides/integration-options-private-operator.md index 40020fcb0..1e953f073 100644 --- a/docs/guides/integration-options-private-operator.md +++ b/docs/guides/integration-options-private-operator.md @@ -110,6 +110,10 @@ To get started as a Private Operator, follow these steps: 5. Test. 6. Go live. +:::important +Whatever option you use, the data that you send for processing must be normalized, hashed, and encoded before sending. For details, see [Normalization and Encoding](../getting-started/gs-normalization-encoding.md). +::: + ## Implementation Resources The following documentation resources are available for Private Operators to implement UID2. From 072a7aeeee3de9b0473607fe66031576854a0cd7 Mon Sep 17 00:00:00 2001 From: genwhittTTD Date: Wed, 8 Oct 2025 14:37:38 -0400 Subject: [PATCH 2/2] update --- docs/endpoints/post-token-generate.md | 4 ++++ docs/guides/integration-options-private-operator.md | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/endpoints/post-token-generate.md b/docs/endpoints/post-token-generate.md index 59b0caa6e..2df5c9030 100644 --- a/docs/endpoints/post-token-generate.md +++ b/docs/endpoints/post-token-generate.md @@ -23,6 +23,10 @@ The `optout_check` parameter, required with a value of `1`, checks whether the u Rather than calling this endpoint directly, you could use one of the SDKs to manage it for you. For a summary of options, see [SDKs: Summary](../sdks/summary-sdks.md). +:::important +Whatever option you use, the data that you send for generating UID2s must be normalized, hashed, and encoded before sending. For details, see [Normalization and Encoding](../getting-started/gs-normalization-encoding.md). +::: + ## Request Format `POST '{environment}/v2/token/generate'` diff --git a/docs/guides/integration-options-private-operator.md b/docs/guides/integration-options-private-operator.md index 1e953f073..3696690f4 100644 --- a/docs/guides/integration-options-private-operator.md +++ b/docs/guides/integration-options-private-operator.md @@ -111,7 +111,7 @@ To get started as a Private Operator, follow these steps: 6. Go live. :::important -Whatever option you use, the data that you send for processing must be normalized, hashed, and encoded before sending. For details, see [Normalization and Encoding](../getting-started/gs-normalization-encoding.md). +Whatever option you use, the data that you send for generating UID2s must be normalized, hashed, and encoded before sending. For details, see [Normalization and Encoding](../getting-started/gs-normalization-encoding.md). ::: ## Implementation Resources