Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update algorix.md #5816

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
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
36 changes: 34 additions & 2 deletions dev-docs/bidders/algorix.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 <[email protected]> for more information.

### Bid Params
### Prebid Server Adapter Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
Expand All @@ -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`.
Loading