From 53fff1c37d6970c8e39d3c324bbacca40d0333c6 Mon Sep 17 00:00:00 2001 From: Cortex Dev Date: Mon, 22 Jun 2026 18:08:36 +0300 Subject: [PATCH 1/2] Cortex Bid Adapter: document regional endpoints Document the regional subdomains supported by Cortex (eu, us-east, apac), the REGION placeholder used in the Prebid Server config, and the timezone-based region detection in the Prebid.js adapter. --- dev-docs/bidders/cortex.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/dev-docs/bidders/cortex.md b/dev-docs/bidders/cortex.md index 30617aa6cf..4b1bc740e5 100644 --- a/dev-docs/bidders/cortex.md +++ b/dev-docs/bidders/cortex.md @@ -33,3 +33,31 @@ sidebarType: 1 ## Note For the prebid server you only need to use one parameter: either `placementId` or `endpointId` + +## Regional Endpoints + +Cortex supports the following regional endpoint subdomains: + +- `eu` — EU +- `us-east` — US East +- `apac` — APAC + +### Prebid Server + +The Prebid Server config endpoint is defined with a `REGION` placeholder: + +```yaml +endpoint: "https://REGION.targetadserver.com/pserver" +``` + +Please deploy this config in each of your datacenters and replace `REGION` with the appropriate regional subdomain (`eu`, `us-east`, or `apac`). + +### Prebid.js + +The Prebid.js adapter automatically selects the regional endpoint based on the browser timezone: + +- Europe / Africa / Atlantic / Arctic → `eu` +- Asia / Australia / Antarctica / Pacific / Indian → `apac` +- America / US / Canada → `us-east` +- Unknown / unresolved timezone → `eu` (fallback) + From 63fd3a6a3326e946d5b05a0b649c0d55691a061a Mon Sep 17 00:00:00 2001 From: Cortex Dev Date: Wed, 24 Jun 2026 17:28:56 +0300 Subject: [PATCH 2/2] Cortex Bid Adapter: document regional endpoints --- dev-docs/bidders/cortex.md | 1 - 1 file changed, 1 deletion(-) diff --git a/dev-docs/bidders/cortex.md b/dev-docs/bidders/cortex.md index 4b1bc740e5..3ea0f36ec6 100644 --- a/dev-docs/bidders/cortex.md +++ b/dev-docs/bidders/cortex.md @@ -60,4 +60,3 @@ The Prebid.js adapter automatically selects the regional endpoint based on the b - Asia / Australia / Antarctica / Pacific / Indian → `apac` - America / US / Canada → `us-east` - Unknown / unresolved timezone → `eu` (fallback) -