diff --git a/dev-docs/bidders/algorix.md b/dev-docs/bidders/algorix.md index 83265c579e..0edf4aba1a 100644 --- a/dev-docs/bidders/algorix.md +++ b/dev-docs/bidders/algorix.md @@ -9,7 +9,7 @@ usp_supported: true coppa_supported: true schain_supported: true media_types: banner, video, native -pbjs: false +pbjs: true pbs: true pbs_app_supported: true prebid_member: true @@ -21,7 +21,7 @@ userIds: all AlgoriX adapter requires setup and approval from the AlgoriX team, even for existing in-app developers and publishers. Please reach out to your account team or email to for more information. -### Bid Params +### Prebid Server Adapter Params {: .table .table-bordered .table-striped } | Name | Scope | Description | Example | Type | @@ -37,3 +37,35 @@ Note: * Prebid Server adapter only checks for and uses first imp bid params. All other imp bid params are ignored. * placementId and appId will be generated on AlgoriX Platform. * region is optional param, which determine the AlgoriX server. APAC for SG endpoint, USE for US endpoint, EUC for EU endpoint, Other for Global endpoint. + +### Prebid.js Adapter Params + +{: .table .table-bordered .table-striped } +| Name | Scope | Description | Example | Type | +| ------------- | -------- | ------------- | ------------------------------------ | -------- | +| `sid` | required | Sid | `'260785'` | `string` | +| `token` | required | Token | `'89b6d58567e3913e507f2be61fe8823e'` | `string` | +| `region` | optional | Server Region | `'APAC', 'USE', 'EUC'` | `string` | + +### Test Parameters + +```javascript +var adUnits = [ +{ + sizes: [ + [300, 250] // a display size + ], + bids: [{ + bidder: 'algorix', + params: { + region: 'APAC', // optional + sid: '260785', // required + token: '89b6d58567e3913e507f2be61fe8823e', // required + } + }] +}]; +``` + +Note: + +* AlgoriX server-side Prebid Server adapter supports only `banner`, `video`,`native` media types. But AlgoriX client-side Prebid.js adapter supports only `banner`, doesn't support `video` and `native`.