From 20bea09d329b81605094756b25c63478436d6478 Mon Sep 17 00:00:00 2001 From: Muki Seiler Date: Mon, 6 Oct 2025 15:37:19 +0200 Subject: [PATCH] Revert "Add Alva (alvads) bidder adapter documentation (#6231)" This reverts commit f77616f9b5d24bce4c90c8e83771758fbea9671d. --- ADS - Acceso directo.lnk | Bin 885 -> 0 bytes dev-docs/bidders/alvads.md | 152 ------------------------------------- 2 files changed, 152 deletions(-) delete mode 100644 ADS - Acceso directo.lnk delete mode 100644 dev-docs/bidders/alvads.md diff --git a/ADS - Acceso directo.lnk b/ADS - Acceso directo.lnk deleted file mode 100644 index 192bf02077e7d432721f25569068a5ae8812c27b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 885 zcmah{Ur3Wt6hEJtxE^w=Wow$wLQ||Ut%o)mxVCbL;b5$yt=QZqF5SMlZ`FcI>7kGu z1rfxckg{aaAA_PIEMKf1dRRSJ<{o;r43l1Z3HqJ8RCs=P9x&B0cLL&nakqrcA0GCAU9lV zfc-!vz?@m{0C;%-9k2pON6dLX_kl<(B%e^oZt;1Pa6<7ZfoPyNB*y|F+2;r=JxMw4 zV>+~wjQD&)`U_Qt4?^>bHOG=krE_sF-3dRfY0kRr=T80TKT>i!(>RuTv!(32=Kkfm z;D-n6)BlUV26YwD@JZBea=YB$Oyi&IG}t=&Gq-j`>DqJ{{t!2=25Nylq)?C&6rm)^ zLd#^Jda{!Rls$+Zqre}(0*`{fDA0>CGR0uAZs3w)U4`VvriI!k^R0UIt%V~0(Dko( zH^9G&Gq`avuz2t5V3z^Z!Xlce;9=s2;v|u+g|-V4aSDTG00cv@48j+rZje6?5(@IT z+G;>lTN*|D_W{i7_R(Oy^~!tA<0+cxnAYX^X{!LysRnxa;9(s5-$(XgZo-K7h>MHk uY8Fq#)e5u54Ih?A9rx04=cu#AIATo=ZA7e_6P!TFFY`FtL?)iCzt(R7=D}D1 diff --git a/dev-docs/bidders/alvads.md b/dev-docs/bidders/alvads.md deleted file mode 100644 index 9f605579d4..0000000000 --- a/dev-docs/bidders/alvads.md +++ /dev/null @@ -1,152 +0,0 @@ ---- -layout: bidder -title: Alva -description: Prebid Alva Bidder Adapter -pbjs: true -pbs_app_supported: false -biddercode: alvads -media_types: banner, video -gdpr_supported: true -usp_supported: true -coppa_supported: false ---- - -# Overview - -**Module Name:** alvadsBidAdapter -**Module Type:** Bidder -**Maintainer:** [alvads@oyealva.com](mailto:alvads@oyealva.com) - ---- - -# Description - -The **Alva Bid Adapter** allows publishers to connect their banner and video inventory with the Alva demand platform. - -- **Bidder Code:** `alvads` -- **Supported Media Types:** `banner`, `video` -- **Protocols:** OpenRTB 2.5 via `POST` (banner and video) -- **Dynamic Endpoints:** The adapter uses a default endpoint, but can be overridden via `params.endpoint`. -- **Price Floors:** Supported via `bid.getFloor()`. If configured, the adapter will send `bidfloor` and `bidfloorcur` per impression. - ---- -# Parameters - -| Parameter | Required | Description | -|------------ |---------------- |------------ | -| publisherId | Yes | Publisher ID assigned by Alva | -| tagid | Banner only | Required for banner impressions | -| bidfloor | No | Optional; adapter supports floors module via `bid.getFloor()` | -| userId | No | Optional; used for user identification | -| endpoint | No | Optional; overrides default endpoint | - ---- - -# Test Parameters - -### Banner Example - -```javascript -var adUnits = [{ - code: 'div-banner', - mediaTypes: { - banner: { - sizes: [[300, 250], [320, 100]] - } - }, - bids: [{ - bidder: 'alvads', - params: { - publisherId: 'pub-123', // required - tagid: 'tag-456', // required for banner - bidfloor: 0.50, // optional - userId: '+59165352182', // optional - endpoint: 'https://custom-endpoint.com/openrtb' // optional, overrides default - } - }] -}]; -``` - -### Video Example - -```javascript -var adUnits = [{ - code: 'video-ad', - mediaTypes: { - video: { - context: 'instream', - playerSize: [[640, 360]] - } - }, - bids: [{ - bidder: 'alvads', - params: { - publisherId: 'pub-123', // required - bidfloor: 0.5, // optional - userId: '+59165352182', // optional - endpoint: 'https://custom-endpoint.com/video' // optional, overrides default - } - }] -}]; -``` - ---- - -# Request Information - -### Banner / Video -- **Default Endpoint:** - ``` - https://helios-ads-qa-core.ssidevops.com/decision/openrtb - ``` -- **Method:** `POST` -- **Payload:** OpenRTB 2.5 request containing `site`, `device`, `user`, `regs`, and `imp`. -- **Dynamic Endpoint:** Can be overridden via `bid.params.endpoint`. - ---- - -# Response Information - -### Banner -The response is standard OpenRTB with `seatbid`. - -```json -{ - "id": "response-id", - "seatbid": [{ - "bid": [{ - "impid": "imp-123", - "price": 0.50, - "adm": "
Creative
", - "crid": "creative-1", - "w": 320, - "h": 100, - "ext": { - "vast_url": "http://example.com/vast.xml" - }, - "adomain": ["example.com"] - }] - }], - "cur": "USD" -} -``` - -### Interpretation -- If `adm` contains ``, the adapter sets `mediaType: 'video'` and includes `vastXml` & `vastUrl`. -- Otherwise, `mediaType: 'banner'` and the ad contains the HTML markup. - ---- - -# Additional Details - -- **Defaults:** - - `netRevenue = true` - - `ttl = 300` - - Banner fallback size: `320x100` - - Video fallback size: `1280x720` - -- **Callbacks:** - - `onTimeout` → logs timeout events - - `onBidWon` → logs winning bids - ----