diff --git a/docs/endpoints/summary-endpoints.md b/docs/endpoints/summary-endpoints.md index cd865d094..fbcad26d0 100644 --- a/docs/endpoints/summary-endpoints.md +++ b/docs/endpoints/summary-endpoints.md @@ -12,6 +12,18 @@ import Link from '@docusaurus/Link'; All UID2 endpoints require a client secret for encrypting API requests (except [POST /token/refresh](post-token-refresh.md) requests) and decrypting responses. For details, and code examples in different programming languages, see [Encrypting Requests and Decrypting Responses](../getting-started/gs-encryption-decryption.md). +## UID2 Endpoints by Audience + +The following table shows the UID2 endpoints, with the audience for each. For details, click through to the applicable sections. + +| Endpoint | Audience | Details | +| :--- | :--- | :--- | +| [POST /token/generate](post-token-generate.md) | Publishers | [UID2 Tokens](#uid2-tokens) | +| [POST /token/validate](post-token-validate.md) | Publishers | [UID2 Tokens](#uid2-tokens) | +| [POST /token/refresh](post-token-refresh.md) | Publishers | [UID2 Tokens](#uid2-tokens) | +| [POST /identity/map](post-identity-map.md) | Advertisers, data providers | [Identity Map](#identity-map) | +| [POST /optout/status](post-optout-status.md) | Advertisers, data providers, DSPs, sharers | [Opt-Out Status](#opt-out-status)| + ## UID2 Tokens The following endpoints are for retrieving and managing UID2 tokens (identity tokens, advertising tokens), and are used mainly by publishers. diff --git a/docs/sdks/summary-sdks.md b/docs/sdks/summary-sdks.md index fcb235a50..c5989854b 100644 --- a/docs/sdks/summary-sdks.md +++ b/docs/sdks/summary-sdks.md @@ -18,15 +18,108 @@ Review the SDK functionality to determine which SDK or SDKs you want to use, the The following table summarizes the functionality available with each SDK. -| UID2 SDK for... | Client-Side or Server-Side | Encrypt Raw UID2 to UID2 Token for Sharing | Decrypt UID2 Token to Raw UID2 | Generate UID2 Token from DII | Refresh UID2 Token | Map DII to Raw UID2s* | Monitor Rotated Salt Buckets** | + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Audience  > > >PublisherAdvertiser / Data ProviderDSP
SDK for...Client-Side or Server-SideGenerate UID2 Token from DIIRefresh UID2 TokenMap DII to Raw UID2s*Monitor Rotated Salt Buckets**Encrypt Raw UID2 to UID2 Token for SharingDecrypt UID2 Token to Raw UID2
JavaScriptClient
JavaServer
PythonServer
C# / .NETServer
C++Server
AndroidClient (Mobile)
iOSClient (Mobile)
* Advertisers and Data Providers who need to generate raw UID2s from DII can also do this via Snowflake (see [Snowflake Integration Guide](../guides/integration-snowflake.md)) or by using the [POST /identity/map](../endpoints/post-identity-map.md) endpoint.