Skip to content
Open
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
27 changes: 27 additions & 0 deletions dev-docs/bidders/cortex.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,30 @@ 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)
Loading