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

Added publisherId param to bid params in insticator adapter doc #5406

Merged
merged 3 commits into from
Jun 16, 2024
Merged
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
8 changes: 6 additions & 2 deletions dev-docs/bidders/insticator.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ multiformat_supported: will-bid-on-any
pbjs: true
gvl_id: 910
sidebarType: 1
userIds: all
---

### Bid Params
Expand All @@ -24,6 +25,7 @@ sidebarType: 1
| Name | Scope | Description | Example | Type |
|-----------------------------|----------|-----------------------------------------------------------------------------------------|------------------------------------|----------|
| `adUnitId` | Required | The ad unit ID provided by Insticator | `'test'` | `string` |
| `publisherId` | optional | The publisher ID provided by Insticator | `'test'` | `string` |
| `yob` | optional | Year of Birth | `'1982'` | `string` |
| `gender` | optional | Gender | `'M'` | `string` |
| `instl` | optional | 1 = the ad is interstitial or full screen, 0 = not interstitial. | `1` | `number` |
Expand Down Expand Up @@ -58,7 +60,8 @@ var adUnitsBannerOnly = [
{
bidder: 'insticator',
params: {
adUnitId: 'example_adunit_id',
adUnitId: 'example_adunit_id',
publisherId: 'example_publisher_id',
},
},
],
Expand Down Expand Up @@ -170,7 +173,8 @@ var adUnits = [
bids: [{
bidder: 'insticator',
params: {
adUnitId: 'example_adunit_id'
adUnitId: 'example_adunit_id',
publisherId: 'example_publisher_id',
}
}],
...
Expand Down
Loading